Class: Azure::Network::Mgmt::V2017_03_30::Models::ServiceEndpointPropertiesFormat

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2017-03-30/generated/azure_mgmt_network/models/service_endpoint_properties_format.rb

Overview

The service endpoint properties.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#locationsArray<String>

Returns A list of locations.

Returns:

  • (Array<String>)

    A list of locations.



19
20
21
# File 'lib/2017-03-30/generated/azure_mgmt_network/models/service_endpoint_properties_format.rb', line 19

def locations
  @locations
end

#provisioning_stateString

Returns The provisioning state of the resource.

Returns:

  • (String)

    The provisioning state of the resource.



22
23
24
# File 'lib/2017-03-30/generated/azure_mgmt_network/models/service_endpoint_properties_format.rb', line 22

def provisioning_state
  @provisioning_state
end

#serviceString

Returns The type of the endpoint service.

Returns:

  • (String)

    The type of the endpoint service.



16
17
18
# File 'lib/2017-03-30/generated/azure_mgmt_network/models/service_endpoint_properties_format.rb', line 16

def service
  @service
end

Class Method Details

.mapperObject

Mapper for ServiceEndpointPropertiesFormat class as Ruby Hash. This will be used for serialization/deserialization.



29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
# File 'lib/2017-03-30/generated/azure_mgmt_network/models/service_endpoint_properties_format.rb', line 29

def self.mapper()
  {
    required: false,
    serialized_name: 'ServiceEndpointPropertiesFormat',
    type: {
      name: 'Composite',
      class_name: 'ServiceEndpointPropertiesFormat',
      model_properties: {
        service: {
          required: false,
          serialized_name: 'service',
          type: {
            name: 'String'
          }
        },
        locations: {
          required: false,
          serialized_name: 'locations',
          type: {
            name: 'Sequence',
            element: {
                required: false,
                serialized_name: 'StringElementType',
                type: {
                  name: 'String'
                }
            }
          }
        },
        provisioning_state: {
          required: false,
          serialized_name: 'provisioningState',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end