你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

Endpoint 构造函数

定义

重载

Endpoint()

初始化 Endpoint 类的新实例。

Endpoint(String, String, String, String, String, Nullable<EndpointStatus>, Nullable<Int64>, Nullable<Int64>, String, Nullable<EndpointMonitorStatus>, Nullable<Int64>, Nullable<Int64>, Nullable<Int64>, IList<String>, IList<EndpointPropertiesSubnetsItem>, IList<EndpointPropertiesCustomHeadersItem>)

初始化 Endpoint 类的新实例。

Endpoint()

初始化 Endpoint 类的新实例。

public Endpoint ();
Public Sub New ()

适用于

Endpoint(String, String, String, String, String, Nullable<EndpointStatus>, Nullable<Int64>, Nullable<Int64>, String, Nullable<EndpointMonitorStatus>, Nullable<Int64>, Nullable<Int64>, Nullable<Int64>, IList<String>, IList<EndpointPropertiesSubnetsItem>, IList<EndpointPropertiesCustomHeadersItem>)

初始化 Endpoint 类的新实例。

public Endpoint (string id = default, string name = default, string type = default, string targetResourceId = default, string target = default, Microsoft.Azure.Management.TrafficManager.Models.EndpointStatus? endpointStatus = default, long? weight = default, long? priority = default, string endpointLocation = default, Microsoft.Azure.Management.TrafficManager.Models.EndpointMonitorStatus? endpointMonitorStatus = default, long? minChildEndpoints = default, long? minChildEndpointsIPv4 = default, long? minChildEndpointsIPv6 = default, System.Collections.Generic.IList<string> geoMapping = default, System.Collections.Generic.IList<Microsoft.Azure.Management.TrafficManager.Models.EndpointPropertiesSubnetsItem> subnets = default, System.Collections.Generic.IList<Microsoft.Azure.Management.TrafficManager.Models.EndpointPropertiesCustomHeadersItem> customHeaders = default);
new Microsoft.Azure.Management.TrafficManager.Models.Endpoint : string * string * string * string * string * Nullable<Microsoft.Azure.Management.TrafficManager.Models.EndpointStatus> * Nullable<int64> * Nullable<int64> * string * Nullable<Microsoft.Azure.Management.TrafficManager.Models.EndpointMonitorStatus> * Nullable<int64> * Nullable<int64> * Nullable<int64> * System.Collections.Generic.IList<string> * System.Collections.Generic.IList<Microsoft.Azure.Management.TrafficManager.Models.EndpointPropertiesSubnetsItem> * System.Collections.Generic.IList<Microsoft.Azure.Management.TrafficManager.Models.EndpointPropertiesCustomHeadersItem> -> Microsoft.Azure.Management.TrafficManager.Models.Endpoint
Public Sub New (Optional id As String = Nothing, Optional name As String = Nothing, Optional type As String = Nothing, Optional targetResourceId As String = Nothing, Optional target As String = Nothing, Optional endpointStatus As Nullable(Of EndpointStatus) = Nothing, Optional weight As Nullable(Of Long) = Nothing, Optional priority As Nullable(Of Long) = Nothing, Optional endpointLocation As String = Nothing, Optional endpointMonitorStatus As Nullable(Of EndpointMonitorStatus) = Nothing, Optional minChildEndpoints As Nullable(Of Long) = Nothing, Optional minChildEndpointsIPv4 As Nullable(Of Long) = Nothing, Optional minChildEndpointsIPv6 As Nullable(Of Long) = Nothing, Optional geoMapping As IList(Of String) = Nothing, Optional subnets As IList(Of EndpointPropertiesSubnetsItem) = Nothing, Optional customHeaders As IList(Of EndpointPropertiesCustomHeadersItem) = Nothing)

参数

id
String

资源的完全限定资源 ID。 例如 - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/trafficManagerProfiles/{resourceName}

name
String

资源的名称

type
String

资源类型。 Ex- Microsoft.Network/trafficManagerProfiles。

targetResourceId
String

终结点的 的 Azure 资源 URI。 不适用于“ExternalEndpoints”类型的终结点。

target
String

终结点的完全限定的 DNS 名称或 IP 地址。 流量管理器将在针对直接发往此终结点的流量所做的 DNS 响应中返回此值。

endpointStatus
Nullable<EndpointStatus>

终结点的状态。 如果终结点已启用,则会探测它的运行状况,并将它包含在流量路由方法中。 可能的值包括:“Enabled”、“Disabled”

weight
Nullable<Int64>

使用“加权”流量路由方法时此终结点的权重。 可能的值为 1 到 1000。

priority
Nullable<Int64>

使用“优先级”流量路由方法时此终结点的优先级。 可能的值为 1 到 1000,值越小表示优先级越高。 这是一个可选参数。 如果指定,则必须在所有终结点上指定,并且不能有两个终结点共用同一个优先级值。

endpointLocation
String

指定使用“性能”流量路由方法时外部或嵌套终结点的位置。

endpointMonitorStatus
Nullable<EndpointMonitorStatus>

终结点的监视状态。 可能的值包括:“CheckingEndpoint”、“Online”、“已降级”、“Disabled”、“非活动”、“停止”

minChildEndpoints
Nullable<Int64>

子配置文件中必须可用的最小终结点数,才能将父配置文件视为可用。 仅适用于“NestedEndpoints”类型的终结点。

minChildEndpointsIPv4
Nullable<Int64>

IPv4 (DNS 记录类型 A) 终结点的最小数目,这些终结点必须在子配置文件中可用,才能将父配置文件视为可用。 仅适用于“NestedEndpoints”类型的终结点。

minChildEndpointsIPv6
Nullable<Int64>

IPv6 (DNS 记录类型 AAAA) 终结点的最小数目,这些终结点必须在子配置文件中可用,才能将父配置文件视为可用。 仅适用于“NestedEndpoints”类型的终结点。

geoMapping
IList<String>

使用“地理”流量路由方法时映射到此终结点的国家/地区列表。 有关接受值的完整列表,请参阅流量管理器地理文档。

subnets
IList<EndpointPropertiesSubnetsItem>

使用“子网”流量路由方法时映射到此终结点的子网、IP 地址和/或地址范围的列表。 空列表将匹配其他终结点未涵盖的所有范围。

customHeaders
IList<EndpointPropertiesCustomHeadersItem>

自定义标头列表。

适用于