class Azure::Network::Mgmt::V2018_10_01::Models::ServiceEndpointPropertiesFormat
The service endpoint properties.
Attributes
locations[RW]
@return [Array<String>] A list of locations.
provisioning_state[RW]
@return [String] The provisioning state of the resource.
service[RW]
@return [String] The type of the endpoint service.
Public Class Methods
mapper()
click to toggle source
Mapper for ServiceEndpointPropertiesFormat
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2018-10-01/generated/azure_mgmt_network/models/service_endpoint_properties_format.rb, line 29 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'ServiceEndpointPropertiesFormat', type: { name: 'Composite', class_name: 'ServiceEndpointPropertiesFormat', model_properties: { service: { client_side_validation: true, required: false, serialized_name: 'service', type: { name: 'String' } }, locations: { client_side_validation: true, required: false, serialized_name: 'locations', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'StringElementType', type: { name: 'String' } } } }, provisioning_state: { client_side_validation: true, required: false, serialized_name: 'provisioningState', type: { name: 'String' } } } } } end