class Azure::Network::Mgmt::V2020_06_01::Models::ServiceEndpointPropertiesFormat
The service endpoint properties.
Attributes
locations[RW]
@return [Array<String>] A list of locations.
provisioning_state[RW]
@return [ProvisioningState] The provisioning state of the service endpoint resource. Possible values include: 'Succeeded', 'Updating', 'Deleting', 'Failed'
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/2020-06-01/generated/azure_mgmt_network/models/service_endpoint_properties_format.rb, line 31 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, read_only: true, serialized_name: 'provisioningState', type: { name: 'String' } } } } } end