Class: Azure::ARM::Network::Models::PrivateAccessServicePropertiesFormat
- Inherits:
-
Object
- Object
- Azure::ARM::Network::Models::PrivateAccessServicePropertiesFormat
- Includes:
- MsRest::JSONable, MsRestAzure
- Defined in:
- lib/generated/azure_mgmt_network/models/private_access_service_properties_format.rb
Overview
The private access service properties.
Instance Attribute Summary collapse
-
#locations ⇒ Array<String>
A list of locations.
-
#provisioning_state ⇒ String
The provisioning state of the resource.
-
#service ⇒ String
The type of the private access.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for PrivateAccessServicePropertiesFormat class as Ruby Hash.
Instance Attribute Details
#locations ⇒ Array<String>
20 21 22 |
# File 'lib/generated/azure_mgmt_network/models/private_access_service_properties_format.rb', line 20 def locations @locations end |
#provisioning_state ⇒ String
23 24 25 |
# File 'lib/generated/azure_mgmt_network/models/private_access_service_properties_format.rb', line 23 def provisioning_state @provisioning_state end |
#service ⇒ String
17 18 19 |
# File 'lib/generated/azure_mgmt_network/models/private_access_service_properties_format.rb', line 17 def service @service end |
Class Method Details
.mapper ⇒ Object
Mapper for PrivateAccessServicePropertiesFormat class as Ruby Hash. This will be used for serialization/deserialization.
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 69 |
# File 'lib/generated/azure_mgmt_network/models/private_access_service_properties_format.rb', line 30 def self.mapper() { required: false, serialized_name: 'PrivateAccessServicePropertiesFormat', type: { name: 'Composite', class_name: 'PrivateAccessServicePropertiesFormat', 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 |