class Azure::TrafficManager::Mgmt::V2015_11_01::Models::Endpoint
Class representing a Traffic Manager endpoint.
Attributes
@return [String] Specifies the location of the external or nested endpoints when using the ‘Performance’ traffic routing method.
@return [String] Gets or sets the monitoring status of the endpoint.
@return [String] Gets or sets the status of the endpoint.. If the endpoint is Enabled, it is probed for endpoint health and is included in the traffic routing method. Possible values are 'Enabled' and 'Disabled'.
@return [String] Gets or sets the ID of the Traffic Manager endpoint.
@return [Integer] Gets or sets the minimum number of endpoints that must be available in the child profile in order for the parent profile to be considered available. Only applicable to endpoint of type 'NestedEndpoints'.
@return [String] Gets or sets the name of the Traffic Manager endpoint.
@return [Integer] Gets or sets the priority of this endpoint when using the ‘Priority’ traffic routing method. Possible values are from 1 to 1000, lower values represent higher priority. This is an optional parameter. If specified, it must be specified on all endpoints, and no two endpoints can share the same priority value.
@return [String] Gets or sets the fully-qualified DNS name of the endpoint. Traffic Manager returns this value in DNS responses to direct traffic to this endpoint.
@return [String] Gets or sets the endpoint type of the Traffic Manager endpoint.
@return [Integer] Gets or sets the weight of this endpoint when using the 'Weighted' traffic routing method. Possible values are from 1 to 1000.
Public Class Methods
Mapper for Endpoint
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2015-11-01/generated/azure_mgmt_traffic_manager/models/endpoint.rb, line 70 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'Endpoint', type: { name: 'Composite', class_name: 'Endpoint', model_properties: { id: { client_side_validation: true, required: false, serialized_name: 'id', type: { name: 'String' } }, name: { client_side_validation: true, required: false, serialized_name: 'name', type: { name: 'String' } }, type: { client_side_validation: true, required: false, serialized_name: 'type', type: { name: 'String' } }, target_resource_id: { client_side_validation: true, required: false, serialized_name: 'properties.targetResourceId', type: { name: 'String' } }, target: { client_side_validation: true, required: false, serialized_name: 'properties.target', type: { name: 'String' } }, endpoint_status: { client_side_validation: true, required: false, serialized_name: 'properties.endpointStatus', type: { name: 'String' } }, weight: { client_side_validation: true, required: false, serialized_name: 'properties.weight', type: { name: 'Number' } }, priority: { client_side_validation: true, required: false, serialized_name: 'properties.priority', type: { name: 'Number' } }, endpoint_location: { client_side_validation: true, required: false, serialized_name: 'properties.endpointLocation', type: { name: 'String' } }, endpoint_monitor_status: { client_side_validation: true, required: false, serialized_name: 'properties.endpointMonitorStatus', type: { name: 'String' } }, min_child_endpoints: { client_side_validation: true, required: false, serialized_name: 'properties.minChildEndpoints', type: { name: 'Number' } } } } } end