Source code for azure.mgmt.relay.models._models_py3

# coding=utf-8
# pylint: disable=too-many-lines
# --------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for license information.
# Code generated by Microsoft (R) AutoRest Code Generator.
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
# --------------------------------------------------------------------------

import datetime
import sys
from typing import Any, Dict, List, Optional, TYPE_CHECKING, Union

from .. import _serialization

if sys.version_info >= (3, 9):
    from collections.abc import MutableMapping
else:
    from typing import MutableMapping  # type: ignore  # pylint: disable=ungrouped-imports

if TYPE_CHECKING:
    # pylint: disable=unused-import,ungrouped-imports
    from .. import models as _models
JSON = MutableMapping[str, Any]  # pylint: disable=unsubscriptable-object


[docs]class AccessKeys(_serialization.Model): """Namespace/Relay Connection String. :ivar primary_connection_string: Primary connection string of the created namespace authorization rule. :vartype primary_connection_string: str :ivar secondary_connection_string: Secondary connection string of the created namespace authorization rule. :vartype secondary_connection_string: str :ivar primary_key: A base64-encoded 256-bit primary key for signing and validating the SAS token. :vartype primary_key: str :ivar secondary_key: A base64-encoded 256-bit secondary key for signing and validating the SAS token. :vartype secondary_key: str :ivar key_name: A string that describes the authorization rule. :vartype key_name: str """ _attribute_map = { "primary_connection_string": {"key": "primaryConnectionString", "type": "str"}, "secondary_connection_string": {"key": "secondaryConnectionString", "type": "str"}, "primary_key": {"key": "primaryKey", "type": "str"}, "secondary_key": {"key": "secondaryKey", "type": "str"}, "key_name": {"key": "keyName", "type": "str"}, } def __init__( self, *, primary_connection_string: Optional[str] = None, secondary_connection_string: Optional[str] = None, primary_key: Optional[str] = None, secondary_key: Optional[str] = None, key_name: Optional[str] = None, **kwargs ): """ :keyword primary_connection_string: Primary connection string of the created namespace authorization rule. :paramtype primary_connection_string: str :keyword secondary_connection_string: Secondary connection string of the created namespace authorization rule. :paramtype secondary_connection_string: str :keyword primary_key: A base64-encoded 256-bit primary key for signing and validating the SAS token. :paramtype primary_key: str :keyword secondary_key: A base64-encoded 256-bit secondary key for signing and validating the SAS token. :paramtype secondary_key: str :keyword key_name: A string that describes the authorization rule. :paramtype key_name: str """ super().__init__(**kwargs) self.primary_connection_string = primary_connection_string self.secondary_connection_string = secondary_connection_string self.primary_key = primary_key self.secondary_key = secondary_key self.key_name = key_name
[docs]class ProxyResource(_serialization.Model): """Common fields that are returned in the response for all Azure Resource Manager resources. Variables are only populated by the server, and will be ignored when sending a request. :ivar id: Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}. :vartype id: str :ivar name: The name of the resource. :vartype name: str :ivar type: The type of the resource. E.g. "Microsoft.EventHub/Namespaces" or "Microsoft.EventHub/Namespaces/EventHubs". :vartype type: str :ivar location: The geo-location where the resource lives. :vartype location: str """ _validation = { "id": {"readonly": True}, "name": {"readonly": True}, "type": {"readonly": True}, "location": {"readonly": True}, } _attribute_map = { "id": {"key": "id", "type": "str"}, "name": {"key": "name", "type": "str"}, "type": {"key": "type", "type": "str"}, "location": {"key": "location", "type": "str"}, } def __init__(self, **kwargs): """ """ super().__init__(**kwargs) self.id = None self.name = None self.type = None self.location = None
[docs]class AuthorizationRule(ProxyResource): """Single item in a List or Get AuthorizationRule operation. Variables are only populated by the server, and will be ignored when sending a request. :ivar id: Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}. :vartype id: str :ivar name: The name of the resource. :vartype name: str :ivar type: The type of the resource. E.g. "Microsoft.EventHub/Namespaces" or "Microsoft.EventHub/Namespaces/EventHubs". :vartype type: str :ivar location: The geo-location where the resource lives. :vartype location: str :ivar system_data: The system meta data relating to this resource. :vartype system_data: ~azure.mgmt.relay.models.SystemData :ivar rights: The rights associated with the rule. :vartype rights: list[str or ~azure.mgmt.relay.models.AccessRights] """ _validation = { "id": {"readonly": True}, "name": {"readonly": True}, "type": {"readonly": True}, "location": {"readonly": True}, "system_data": {"readonly": True}, } _attribute_map = { "id": {"key": "id", "type": "str"}, "name": {"key": "name", "type": "str"}, "type": {"key": "type", "type": "str"}, "location": {"key": "location", "type": "str"}, "system_data": {"key": "systemData", "type": "SystemData"}, "rights": {"key": "properties.rights", "type": "[str]"}, } def __init__(self, *, rights: Optional[List[Union[str, "_models.AccessRights"]]] = None, **kwargs): """ :keyword rights: The rights associated with the rule. :paramtype rights: list[str or ~azure.mgmt.relay.models.AccessRights] """ super().__init__(**kwargs) self.system_data = None self.rights = rights
[docs]class AuthorizationRuleListResult(_serialization.Model): """The response from the list namespace operation. :ivar value: Result of the list authorization rules operation. :vartype value: list[~azure.mgmt.relay.models.AuthorizationRule] :ivar next_link: Link to the next set of results. Not empty if value contains incomplete list of authorization rules. :vartype next_link: str """ _attribute_map = { "value": {"key": "value", "type": "[AuthorizationRule]"}, "next_link": {"key": "nextLink", "type": "str"}, } def __init__( self, *, value: Optional[List["_models.AuthorizationRule"]] = None, next_link: Optional[str] = None, **kwargs ): """ :keyword value: Result of the list authorization rules operation. :paramtype value: list[~azure.mgmt.relay.models.AuthorizationRule] :keyword next_link: Link to the next set of results. Not empty if value contains incomplete list of authorization rules. :paramtype next_link: str """ super().__init__(**kwargs) self.value = value self.next_link = next_link
[docs]class CheckNameAvailability(_serialization.Model): """Description of the check name availability request properties. All required parameters must be populated in order to send to Azure. :ivar name: The namespace name to check for availability. The namespace name can contain only letters, numbers, and hyphens. The namespace must start with a letter, and it must end with a letter or number. Required. :vartype name: str """ _validation = { "name": {"required": True}, } _attribute_map = { "name": {"key": "name", "type": "str"}, } def __init__(self, *, name: str, **kwargs): """ :keyword name: The namespace name to check for availability. The namespace name can contain only letters, numbers, and hyphens. The namespace must start with a letter, and it must end with a letter or number. Required. :paramtype name: str """ super().__init__(**kwargs) self.name = name
[docs]class CheckNameAvailabilityResult(_serialization.Model): """Description of the check name availability request properties. Variables are only populated by the server, and will be ignored when sending a request. :ivar message: The detailed info regarding the reason associated with the namespace. :vartype message: str :ivar name_available: Value indicating namespace is available. Returns true if the namespace is available; otherwise, false. :vartype name_available: bool :ivar reason: The reason for unavailability of a namespace. Known values are: "None", "InvalidName", "SubscriptionIsDisabled", "NameInUse", "NameInLockdown", and "TooManyNamespaceInCurrentSubscription". :vartype reason: str or ~azure.mgmt.relay.models.UnavailableReason """ _validation = { "message": {"readonly": True}, } _attribute_map = { "message": {"key": "message", "type": "str"}, "name_available": {"key": "nameAvailable", "type": "bool"}, "reason": {"key": "reason", "type": "str"}, } def __init__( self, *, name_available: Optional[bool] = None, reason: Optional[Union[str, "_models.UnavailableReason"]] = None, **kwargs ): """ :keyword name_available: Value indicating namespace is available. Returns true if the namespace is available; otherwise, false. :paramtype name_available: bool :keyword reason: The reason for unavailability of a namespace. Known values are: "None", "InvalidName", "SubscriptionIsDisabled", "NameInUse", "NameInLockdown", and "TooManyNamespaceInCurrentSubscription". :paramtype reason: str or ~azure.mgmt.relay.models.UnavailableReason """ super().__init__(**kwargs) self.message = None self.name_available = name_available self.reason = reason
[docs]class ConnectionState(_serialization.Model): """ConnectionState information. :ivar status: Status of the connection. Known values are: "Pending", "Approved", "Rejected", and "Disconnected". :vartype status: str or ~azure.mgmt.relay.models.PrivateLinkConnectionStatus :ivar description: Description of the connection state. :vartype description: str """ _attribute_map = { "status": {"key": "status", "type": "str"}, "description": {"key": "description", "type": "str"}, } def __init__( self, *, status: Optional[Union[str, "_models.PrivateLinkConnectionStatus"]] = None, description: Optional[str] = None, **kwargs ): """ :keyword status: Status of the connection. Known values are: "Pending", "Approved", "Rejected", and "Disconnected". :paramtype status: str or ~azure.mgmt.relay.models.PrivateLinkConnectionStatus :keyword description: Description of the connection state. :paramtype description: str """ super().__init__(**kwargs) self.status = status self.description = description
[docs]class ErrorAdditionalInfo(_serialization.Model): """The resource management error additional info. Variables are only populated by the server, and will be ignored when sending a request. :ivar type: The additional info type. :vartype type: str :ivar info: The additional info. :vartype info: JSON """ _validation = { "type": {"readonly": True}, "info": {"readonly": True}, } _attribute_map = { "type": {"key": "type", "type": "str"}, "info": {"key": "info", "type": "object"}, } def __init__(self, **kwargs): """ """ super().__init__(**kwargs) self.type = None self.info = None
[docs]class ErrorDetail(_serialization.Model): """The error detail. Variables are only populated by the server, and will be ignored when sending a request. :ivar code: The error code. :vartype code: str :ivar message: The error message. :vartype message: str :ivar target: The error target. :vartype target: str :ivar details: The error details. :vartype details: list[~azure.mgmt.relay.models.ErrorDetail] :ivar additional_info: The error additional info. :vartype additional_info: list[~azure.mgmt.relay.models.ErrorAdditionalInfo] """ _validation = { "code": {"readonly": True}, "message": {"readonly": True}, "target": {"readonly": True}, "details": {"readonly": True}, "additional_info": {"readonly": True}, } _attribute_map = { "code": {"key": "code", "type": "str"}, "message": {"key": "message", "type": "str"}, "target": {"key": "target", "type": "str"}, "details": {"key": "details", "type": "[ErrorDetail]"}, "additional_info": {"key": "additionalInfo", "type": "[ErrorAdditionalInfo]"}, } def __init__(self, **kwargs): """ """ super().__init__(**kwargs) self.code = None self.message = None self.target = None self.details = None self.additional_info = None
[docs]class ErrorResponse(_serialization.Model): """Common error response for all Azure Resource Manager APIs to return error details for failed operations. (This also follows the OData error response format.). :ivar error: The error object. :vartype error: ~azure.mgmt.relay.models.ErrorDetail """ _attribute_map = { "error": {"key": "error", "type": "ErrorDetail"}, } def __init__(self, *, error: Optional["_models.ErrorDetail"] = None, **kwargs): """ :keyword error: The error object. :paramtype error: ~azure.mgmt.relay.models.ErrorDetail """ super().__init__(**kwargs) self.error = error
[docs]class HybridConnection(ProxyResource): """Description of hybrid connection resource. Variables are only populated by the server, and will be ignored when sending a request. :ivar id: Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}. :vartype id: str :ivar name: The name of the resource. :vartype name: str :ivar type: The type of the resource. E.g. "Microsoft.EventHub/Namespaces" or "Microsoft.EventHub/Namespaces/EventHubs". :vartype type: str :ivar location: The geo-location where the resource lives. :vartype location: str :ivar system_data: The system meta data relating to this resource. :vartype system_data: ~azure.mgmt.relay.models.SystemData :ivar created_at: The time the hybrid connection was created. :vartype created_at: ~datetime.datetime :ivar updated_at: The time the namespace was updated. :vartype updated_at: ~datetime.datetime :ivar listener_count: The number of listeners for this hybrid connection. Note that min : 1 and max:25 are supported. :vartype listener_count: int :ivar requires_client_authorization: Returns true if client authorization is needed for this hybrid connection; otherwise, false. :vartype requires_client_authorization: bool :ivar user_metadata: The usermetadata is a placeholder to store user-defined string data for the hybrid connection endpoint. For example, it can be used to store descriptive data, such as a list of teams and their contact information. Also, user-defined configuration settings can be stored. :vartype user_metadata: str """ _validation = { "id": {"readonly": True}, "name": {"readonly": True}, "type": {"readonly": True}, "location": {"readonly": True}, "system_data": {"readonly": True}, "created_at": {"readonly": True}, "updated_at": {"readonly": True}, "listener_count": {"readonly": True, "maximum": 25, "minimum": 0}, } _attribute_map = { "id": {"key": "id", "type": "str"}, "name": {"key": "name", "type": "str"}, "type": {"key": "type", "type": "str"}, "location": {"key": "location", "type": "str"}, "system_data": {"key": "systemData", "type": "SystemData"}, "created_at": {"key": "properties.createdAt", "type": "iso-8601"}, "updated_at": {"key": "properties.updatedAt", "type": "iso-8601"}, "listener_count": {"key": "properties.listenerCount", "type": "int"}, "requires_client_authorization": {"key": "properties.requiresClientAuthorization", "type": "bool"}, "user_metadata": {"key": "properties.userMetadata", "type": "str"}, } def __init__( self, *, requires_client_authorization: Optional[bool] = None, user_metadata: Optional[str] = None, **kwargs ): """ :keyword requires_client_authorization: Returns true if client authorization is needed for this hybrid connection; otherwise, false. :paramtype requires_client_authorization: bool :keyword user_metadata: The usermetadata is a placeholder to store user-defined string data for the hybrid connection endpoint. For example, it can be used to store descriptive data, such as a list of teams and their contact information. Also, user-defined configuration settings can be stored. :paramtype user_metadata: str """ super().__init__(**kwargs) self.system_data = None self.created_at = None self.updated_at = None self.listener_count = None self.requires_client_authorization = requires_client_authorization self.user_metadata = user_metadata
[docs]class HybridConnectionListResult(_serialization.Model): """The response of the list hybrid connection operation. :ivar value: Result of the list hybrid connections. :vartype value: list[~azure.mgmt.relay.models.HybridConnection] :ivar next_link: Link to the next set of results. Not empty if value contains incomplete list hybrid connection operation. :vartype next_link: str """ _attribute_map = { "value": {"key": "value", "type": "[HybridConnection]"}, "next_link": {"key": "nextLink", "type": "str"}, } def __init__( self, *, value: Optional[List["_models.HybridConnection"]] = None, next_link: Optional[str] = None, **kwargs ): """ :keyword value: Result of the list hybrid connections. :paramtype value: list[~azure.mgmt.relay.models.HybridConnection] :keyword next_link: Link to the next set of results. Not empty if value contains incomplete list hybrid connection operation. :paramtype next_link: str """ super().__init__(**kwargs) self.value = value self.next_link = next_link
[docs]class Resource(_serialization.Model): """The resource definition. Variables are only populated by the server, and will be ignored when sending a request. :ivar id: Resource ID. :vartype id: str :ivar name: Resource name. :vartype name: str :ivar type: Resource type. :vartype type: str """ _validation = { "id": {"readonly": True}, "name": {"readonly": True}, "type": {"readonly": True}, } _attribute_map = { "id": {"key": "id", "type": "str"}, "name": {"key": "name", "type": "str"}, "type": {"key": "type", "type": "str"}, } def __init__(self, **kwargs): """ """ super().__init__(**kwargs) self.id = None self.name = None self.type = None
[docs]class NetworkRuleSet(Resource): """Description of topic resource. Variables are only populated by the server, and will be ignored when sending a request. :ivar id: Resource ID. :vartype id: str :ivar name: Resource name. :vartype name: str :ivar type: Resource type. :vartype type: str :ivar system_data: The system meta data relating to this resource. :vartype system_data: ~azure.mgmt.relay.models.SystemData :ivar default_action: Default Action for Network Rule Set. Known values are: "Allow" and "Deny". :vartype default_action: str or ~azure.mgmt.relay.models.DefaultAction :ivar public_network_access: This determines if traffic is allowed over public network. By default it is enabled. Known values are: "Enabled", "Disabled", and "SecuredByPerimeter". :vartype public_network_access: str or ~azure.mgmt.relay.models.PublicNetworkAccess :ivar ip_rules: List of IpRules. :vartype ip_rules: list[~azure.mgmt.relay.models.NWRuleSetIpRules] """ _validation = { "id": {"readonly": True}, "name": {"readonly": True}, "type": {"readonly": True}, "system_data": {"readonly": True}, } _attribute_map = { "id": {"key": "id", "type": "str"}, "name": {"key": "name", "type": "str"}, "type": {"key": "type", "type": "str"}, "system_data": {"key": "systemData", "type": "SystemData"}, "default_action": {"key": "properties.defaultAction", "type": "str"}, "public_network_access": {"key": "properties.publicNetworkAccess", "type": "str"}, "ip_rules": {"key": "properties.ipRules", "type": "[NWRuleSetIpRules]"}, } def __init__( self, *, default_action: Optional[Union[str, "_models.DefaultAction"]] = None, public_network_access: Optional[Union[str, "_models.PublicNetworkAccess"]] = None, ip_rules: Optional[List["_models.NWRuleSetIpRules"]] = None, **kwargs ): """ :keyword default_action: Default Action for Network Rule Set. Known values are: "Allow" and "Deny". :paramtype default_action: str or ~azure.mgmt.relay.models.DefaultAction :keyword public_network_access: This determines if traffic is allowed over public network. By default it is enabled. Known values are: "Enabled", "Disabled", and "SecuredByPerimeter". :paramtype public_network_access: str or ~azure.mgmt.relay.models.PublicNetworkAccess :keyword ip_rules: List of IpRules. :paramtype ip_rules: list[~azure.mgmt.relay.models.NWRuleSetIpRules] """ super().__init__(**kwargs) self.system_data = None self.default_action = default_action self.public_network_access = public_network_access self.ip_rules = ip_rules
[docs]class NWRuleSetIpRules(_serialization.Model): """The response from the List namespace operation. :ivar ip_mask: IP Mask. :vartype ip_mask: str :ivar action: The IP Filter Action. "Allow" :vartype action: str or ~azure.mgmt.relay.models.NetworkRuleIPAction """ _attribute_map = { "ip_mask": {"key": "ipMask", "type": "str"}, "action": {"key": "action", "type": "str"}, } def __init__( self, *, ip_mask: Optional[str] = None, action: Optional[Union[str, "_models.NetworkRuleIPAction"]] = None, **kwargs ): """ :keyword ip_mask: IP Mask. :paramtype ip_mask: str :keyword action: The IP Filter Action. "Allow" :paramtype action: str or ~azure.mgmt.relay.models.NetworkRuleIPAction """ super().__init__(**kwargs) self.ip_mask = ip_mask self.action = action
[docs]class Operation(_serialization.Model): """A Relay REST API operation. Variables are only populated by the server, and will be ignored when sending a request. :ivar name: Operation name: {provider}/{resource}/{operation}. :vartype name: str :ivar is_data_action: Indicates whether the operation is a data action. :vartype is_data_action: bool :ivar display: Display of the operation. :vartype display: ~azure.mgmt.relay.models.OperationDisplay :ivar origin: Origin of the operation. :vartype origin: str :ivar properties: Properties of the operation. :vartype properties: JSON """ _validation = { "name": {"readonly": True}, "is_data_action": {"readonly": True}, "display": {"readonly": True}, "origin": {"readonly": True}, } _attribute_map = { "name": {"key": "name", "type": "str"}, "is_data_action": {"key": "isDataAction", "type": "bool"}, "display": {"key": "display", "type": "OperationDisplay"}, "origin": {"key": "origin", "type": "str"}, "properties": {"key": "properties", "type": "object"}, } def __init__(self, *, properties: Optional[JSON] = None, **kwargs): """ :keyword properties: Properties of the operation. :paramtype properties: JSON """ super().__init__(**kwargs) self.name = None self.is_data_action = None self.display = None self.origin = None self.properties = properties
[docs]class OperationDisplay(_serialization.Model): """Operation display payload. Variables are only populated by the server, and will be ignored when sending a request. :ivar provider: Resource provider of the operation. :vartype provider: str :ivar resource: Resource of the operation. :vartype resource: str :ivar operation: Localized friendly name for the operation. :vartype operation: str :ivar description: Localized friendly description for the operation. :vartype description: str """ _validation = { "provider": {"readonly": True}, "resource": {"readonly": True}, "operation": {"readonly": True}, "description": {"readonly": True}, } _attribute_map = { "provider": {"key": "provider", "type": "str"}, "resource": {"key": "resource", "type": "str"}, "operation": {"key": "operation", "type": "str"}, "description": {"key": "description", "type": "str"}, } def __init__(self, **kwargs): """ """ super().__init__(**kwargs) self.provider = None self.resource = None self.operation = None self.description = None
[docs]class OperationListResult(_serialization.Model): """Result of the request to list Relay operations. It contains a list of operations and a URL link to get the next set of results. Variables are only populated by the server, and will be ignored when sending a request. :ivar value: List of Relay operations supported by the Microsoft.Relay resource provider. :vartype value: list[~azure.mgmt.relay.models.Operation] :ivar next_link: URL to get the next set of operation list results if there are any. :vartype next_link: str """ _validation = { "value": {"readonly": True}, "next_link": {"readonly": True}, } _attribute_map = { "value": {"key": "value", "type": "[Operation]"}, "next_link": {"key": "nextLink", "type": "str"}, } def __init__(self, **kwargs): """ """ super().__init__(**kwargs) self.value = None self.next_link = None
[docs]class PrivateEndpoint(_serialization.Model): """PrivateEndpoint information. :ivar id: The ARM identifier for Private Endpoint. :vartype id: str """ _attribute_map = { "id": {"key": "id", "type": "str"}, } def __init__(self, *, id: Optional[str] = None, **kwargs): # pylint: disable=redefined-builtin """ :keyword id: The ARM identifier for Private Endpoint. :paramtype id: str """ super().__init__(**kwargs) self.id = id
[docs]class PrivateEndpointConnection(ProxyResource): """Properties of the PrivateEndpointConnection. Variables are only populated by the server, and will be ignored when sending a request. :ivar id: Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}. :vartype id: str :ivar name: The name of the resource. :vartype name: str :ivar type: The type of the resource. E.g. "Microsoft.EventHub/Namespaces" or "Microsoft.EventHub/Namespaces/EventHubs". :vartype type: str :ivar location: The geo-location where the resource lives. :vartype location: str :ivar system_data: The system meta data relating to this resource. :vartype system_data: ~azure.mgmt.relay.models.SystemData :ivar private_endpoint: The Private Endpoint resource for this Connection. :vartype private_endpoint: ~azure.mgmt.relay.models.PrivateEndpoint :ivar private_link_service_connection_state: Details about the state of the connection. :vartype private_link_service_connection_state: ~azure.mgmt.relay.models.ConnectionState :ivar provisioning_state: Provisioning state of the Private Endpoint Connection. Known values are: "Creating", "Updating", "Deleting", "Succeeded", "Canceled", and "Failed". :vartype provisioning_state: str or ~azure.mgmt.relay.models.EndPointProvisioningState """ _validation = { "id": {"readonly": True}, "name": {"readonly": True}, "type": {"readonly": True}, "location": {"readonly": True}, "system_data": {"readonly": True}, } _attribute_map = { "id": {"key": "id", "type": "str"}, "name": {"key": "name", "type": "str"}, "type": {"key": "type", "type": "str"}, "location": {"key": "location", "type": "str"}, "system_data": {"key": "systemData", "type": "SystemData"}, "private_endpoint": {"key": "properties.privateEndpoint", "type": "PrivateEndpoint"}, "private_link_service_connection_state": { "key": "properties.privateLinkServiceConnectionState", "type": "ConnectionState", }, "provisioning_state": {"key": "properties.provisioningState", "type": "str"}, } def __init__( self, *, private_endpoint: Optional["_models.PrivateEndpoint"] = None, private_link_service_connection_state: Optional["_models.ConnectionState"] = None, provisioning_state: Optional[Union[str, "_models.EndPointProvisioningState"]] = None, **kwargs ): """ :keyword private_endpoint: The Private Endpoint resource for this Connection. :paramtype private_endpoint: ~azure.mgmt.relay.models.PrivateEndpoint :keyword private_link_service_connection_state: Details about the state of the connection. :paramtype private_link_service_connection_state: ~azure.mgmt.relay.models.ConnectionState :keyword provisioning_state: Provisioning state of the Private Endpoint Connection. Known values are: "Creating", "Updating", "Deleting", "Succeeded", "Canceled", and "Failed". :paramtype provisioning_state: str or ~azure.mgmt.relay.models.EndPointProvisioningState """ super().__init__(**kwargs) self.system_data = None self.private_endpoint = private_endpoint self.private_link_service_connection_state = private_link_service_connection_state self.provisioning_state = provisioning_state
[docs]class PrivateEndpointConnectionListResult(_serialization.Model): """Result of the list of all private endpoint connections operation. :ivar value: A collection of private endpoint connection resources. :vartype value: list[~azure.mgmt.relay.models.PrivateEndpointConnection] :ivar next_link: A link for the next page of private endpoint connection resources. :vartype next_link: str """ _attribute_map = { "value": {"key": "value", "type": "[PrivateEndpointConnection]"}, "next_link": {"key": "nextLink", "type": "str"}, } def __init__( self, *, value: Optional[List["_models.PrivateEndpointConnection"]] = None, next_link: Optional[str] = None, **kwargs ): """ :keyword value: A collection of private endpoint connection resources. :paramtype value: list[~azure.mgmt.relay.models.PrivateEndpointConnection] :keyword next_link: A link for the next page of private endpoint connection resources. :paramtype next_link: str """ super().__init__(**kwargs) self.value = value self.next_link = next_link
[docs]class PrivateLinkResource(_serialization.Model): """Information of the private link resource. :ivar id: Fully qualified identifier of the resource. :vartype id: str :ivar name: Name of the resource. :vartype name: str :ivar type: Type of the resource. :vartype type: str :ivar group_id: The private link resource group id. :vartype group_id: str :ivar required_members: The private link resource required member names. :vartype required_members: list[str] :ivar required_zone_names: The private link resource Private link DNS zone name. :vartype required_zone_names: list[str] """ _attribute_map = { "id": {"key": "id", "type": "str"}, "name": {"key": "name", "type": "str"}, "type": {"key": "type", "type": "str"}, "group_id": {"key": "properties.groupId", "type": "str"}, "required_members": {"key": "properties.requiredMembers", "type": "[str]"}, "required_zone_names": {"key": "properties.requiredZoneNames", "type": "[str]"}, } def __init__( self, *, id: Optional[str] = None, # pylint: disable=redefined-builtin name: Optional[str] = None, type: Optional[str] = None, group_id: Optional[str] = None, required_members: Optional[List[str]] = None, required_zone_names: Optional[List[str]] = None, **kwargs ): """ :keyword id: Fully qualified identifier of the resource. :paramtype id: str :keyword name: Name of the resource. :paramtype name: str :keyword type: Type of the resource. :paramtype type: str :keyword group_id: The private link resource group id. :paramtype group_id: str :keyword required_members: The private link resource required member names. :paramtype required_members: list[str] :keyword required_zone_names: The private link resource Private link DNS zone name. :paramtype required_zone_names: list[str] """ super().__init__(**kwargs) self.id = id self.name = name self.type = type self.group_id = group_id self.required_members = required_members self.required_zone_names = required_zone_names
[docs]class PrivateLinkResourcesListResult(_serialization.Model): """Result of the List private link resources operation. :ivar value: A collection of private link resources. :vartype value: list[~azure.mgmt.relay.models.PrivateLinkResource] :ivar next_link: A link for the next page of private link resources. :vartype next_link: str """ _attribute_map = { "value": {"key": "value", "type": "[PrivateLinkResource]"}, "next_link": {"key": "nextLink", "type": "str"}, } def __init__( self, *, value: Optional[List["_models.PrivateLinkResource"]] = None, next_link: Optional[str] = None, **kwargs ): """ :keyword value: A collection of private link resources. :paramtype value: list[~azure.mgmt.relay.models.PrivateLinkResource] :keyword next_link: A link for the next page of private link resources. :paramtype next_link: str """ super().__init__(**kwargs) self.value = value self.next_link = next_link
[docs]class RegenerateAccessKeyParameters(_serialization.Model): """Parameters supplied to the regenerate authorization rule operation, specifies which key needs to be reset. All required parameters must be populated in order to send to Azure. :ivar key_type: The access key to regenerate. Required. Known values are: "PrimaryKey" and "SecondaryKey". :vartype key_type: str or ~azure.mgmt.relay.models.KeyType :ivar key: Optional. If the key value is provided, this is set to key type, or autogenerated key value set for key type. :vartype key: str """ _validation = { "key_type": {"required": True}, } _attribute_map = { "key_type": {"key": "keyType", "type": "str"}, "key": {"key": "key", "type": "str"}, } def __init__(self, *, key_type: Union[str, "_models.KeyType"], key: Optional[str] = None, **kwargs): """ :keyword key_type: The access key to regenerate. Required. Known values are: "PrimaryKey" and "SecondaryKey". :paramtype key_type: str or ~azure.mgmt.relay.models.KeyType :keyword key: Optional. If the key value is provided, this is set to key type, or autogenerated key value set for key type. :paramtype key: str """ super().__init__(**kwargs) self.key_type = key_type self.key = key
[docs]class TrackedResource(Resource): """Definition of resource. Variables are only populated by the server, and will be ignored when sending a request. All required parameters must be populated in order to send to Azure. :ivar id: Resource ID. :vartype id: str :ivar name: Resource name. :vartype name: str :ivar type: Resource type. :vartype type: str :ivar location: Resource location. Required. :vartype location: str :ivar tags: Resource tags. :vartype tags: dict[str, str] """ _validation = { "id": {"readonly": True}, "name": {"readonly": True}, "type": {"readonly": True}, "location": {"required": True}, } _attribute_map = { "id": {"key": "id", "type": "str"}, "name": {"key": "name", "type": "str"}, "type": {"key": "type", "type": "str"}, "location": {"key": "location", "type": "str"}, "tags": {"key": "tags", "type": "{str}"}, } def __init__(self, *, location: str, tags: Optional[Dict[str, str]] = None, **kwargs): """ :keyword location: Resource location. Required. :paramtype location: str :keyword tags: Resource tags. :paramtype tags: dict[str, str] """ super().__init__(**kwargs) self.location = location self.tags = tags
[docs]class RelayNamespace(TrackedResource): # pylint: disable=too-many-instance-attributes """Description of a namespace resource. Variables are only populated by the server, and will be ignored when sending a request. All required parameters must be populated in order to send to Azure. :ivar id: Resource ID. :vartype id: str :ivar name: Resource name. :vartype name: str :ivar type: Resource type. :vartype type: str :ivar location: Resource location. Required. :vartype location: str :ivar tags: Resource tags. :vartype tags: dict[str, str] :ivar sku: SKU of the namespace. :vartype sku: ~azure.mgmt.relay.models.Sku :ivar system_data: The system meta data relating to this resource. :vartype system_data: ~azure.mgmt.relay.models.SystemData :ivar provisioning_state: Provisioning state of the Namespace. :vartype provisioning_state: str :ivar status: Status of the Namespace. :vartype status: str :ivar created_at: The time the namespace was created. :vartype created_at: ~datetime.datetime :ivar updated_at: The time the namespace was updated. :vartype updated_at: ~datetime.datetime :ivar service_bus_endpoint: Endpoint you can use to perform Service Bus operations. :vartype service_bus_endpoint: str :ivar metric_id: Identifier for Azure Insights metrics. :vartype metric_id: str :ivar private_endpoint_connections: List of private endpoint connections. :vartype private_endpoint_connections: list[~azure.mgmt.relay.models.PrivateEndpointConnection] :ivar public_network_access: This determines if traffic is allowed over public network. By default it is enabled. Known values are: "Enabled", "Disabled", and "SecuredByPerimeter". :vartype public_network_access: str or ~azure.mgmt.relay.models.PublicNetworkAccess """ _validation = { "id": {"readonly": True}, "name": {"readonly": True}, "type": {"readonly": True}, "location": {"required": True}, "system_data": {"readonly": True}, "provisioning_state": {"readonly": True}, "status": {"readonly": True}, "created_at": {"readonly": True}, "updated_at": {"readonly": True}, "service_bus_endpoint": {"readonly": True}, "metric_id": {"readonly": True}, } _attribute_map = { "id": {"key": "id", "type": "str"}, "name": {"key": "name", "type": "str"}, "type": {"key": "type", "type": "str"}, "location": {"key": "location", "type": "str"}, "tags": {"key": "tags", "type": "{str}"}, "sku": {"key": "sku", "type": "Sku"}, "system_data": {"key": "systemData", "type": "SystemData"}, "provisioning_state": {"key": "properties.provisioningState", "type": "str"}, "status": {"key": "properties.status", "type": "str"}, "created_at": {"key": "properties.createdAt", "type": "iso-8601"}, "updated_at": {"key": "properties.updatedAt", "type": "iso-8601"}, "service_bus_endpoint": {"key": "properties.serviceBusEndpoint", "type": "str"}, "metric_id": {"key": "properties.metricId", "type": "str"}, "private_endpoint_connections": { "key": "properties.privateEndpointConnections", "type": "[PrivateEndpointConnection]", }, "public_network_access": {"key": "properties.publicNetworkAccess", "type": "str"}, } def __init__( self, *, location: str, tags: Optional[Dict[str, str]] = None, sku: Optional["_models.Sku"] = None, private_endpoint_connections: Optional[List["_models.PrivateEndpointConnection"]] = None, public_network_access: Optional[Union[str, "_models.PublicNetworkAccess"]] = None, **kwargs ): """ :keyword location: Resource location. Required. :paramtype location: str :keyword tags: Resource tags. :paramtype tags: dict[str, str] :keyword sku: SKU of the namespace. :paramtype sku: ~azure.mgmt.relay.models.Sku :keyword private_endpoint_connections: List of private endpoint connections. :paramtype private_endpoint_connections: list[~azure.mgmt.relay.models.PrivateEndpointConnection] :keyword public_network_access: This determines if traffic is allowed over public network. By default it is enabled. Known values are: "Enabled", "Disabled", and "SecuredByPerimeter". :paramtype public_network_access: str or ~azure.mgmt.relay.models.PublicNetworkAccess """ super().__init__(location=location, tags=tags, **kwargs) self.sku = sku self.system_data = None self.provisioning_state = None self.status = None self.created_at = None self.updated_at = None self.service_bus_endpoint = None self.metric_id = None self.private_endpoint_connections = private_endpoint_connections self.public_network_access = public_network_access
[docs]class RelayNamespaceListResult(_serialization.Model): """The response from the list namespace operation. :ivar value: Result of the list namespace operation. :vartype value: list[~azure.mgmt.relay.models.RelayNamespace] :ivar next_link: Link to the next set of results. Not empty if value contains incomplete list of namespaces. :vartype next_link: str """ _attribute_map = { "value": {"key": "value", "type": "[RelayNamespace]"}, "next_link": {"key": "nextLink", "type": "str"}, } def __init__( self, *, value: Optional[List["_models.RelayNamespace"]] = None, next_link: Optional[str] = None, **kwargs ): """ :keyword value: Result of the list namespace operation. :paramtype value: list[~azure.mgmt.relay.models.RelayNamespace] :keyword next_link: Link to the next set of results. Not empty if value contains incomplete list of namespaces. :paramtype next_link: str """ super().__init__(**kwargs) self.value = value self.next_link = next_link
[docs]class ResourceNamespacePatch(Resource): """Definition of resource. Variables are only populated by the server, and will be ignored when sending a request. :ivar id: Resource ID. :vartype id: str :ivar name: Resource name. :vartype name: str :ivar type: Resource type. :vartype type: str :ivar tags: Resource tags. :vartype tags: dict[str, str] """ _validation = { "id": {"readonly": True}, "name": {"readonly": True}, "type": {"readonly": True}, } _attribute_map = { "id": {"key": "id", "type": "str"}, "name": {"key": "name", "type": "str"}, "type": {"key": "type", "type": "str"}, "tags": {"key": "tags", "type": "{str}"}, } def __init__(self, *, tags: Optional[Dict[str, str]] = None, **kwargs): """ :keyword tags: Resource tags. :paramtype tags: dict[str, str] """ super().__init__(**kwargs) self.tags = tags
[docs]class RelayUpdateParameters(ResourceNamespacePatch): # pylint: disable=too-many-instance-attributes """Description of a namespace resource. Variables are only populated by the server, and will be ignored when sending a request. :ivar id: Resource ID. :vartype id: str :ivar name: Resource name. :vartype name: str :ivar type: Resource type. :vartype type: str :ivar tags: Resource tags. :vartype tags: dict[str, str] :ivar sku: SKU of the namespace. :vartype sku: ~azure.mgmt.relay.models.Sku :ivar provisioning_state: Provisioning state of the Namespace. :vartype provisioning_state: str :ivar status: Status of the Namespace. :vartype status: str :ivar created_at: The time the namespace was created. :vartype created_at: ~datetime.datetime :ivar updated_at: The time the namespace was updated. :vartype updated_at: ~datetime.datetime :ivar service_bus_endpoint: Endpoint you can use to perform Service Bus operations. :vartype service_bus_endpoint: str :ivar metric_id: Identifier for Azure Insights metrics. :vartype metric_id: str :ivar private_endpoint_connections: List of private endpoint connections. :vartype private_endpoint_connections: list[~azure.mgmt.relay.models.PrivateEndpointConnection] :ivar public_network_access: This determines if traffic is allowed over public network. By default it is enabled. Known values are: "Enabled", "Disabled", and "SecuredByPerimeter". :vartype public_network_access: str or ~azure.mgmt.relay.models.PublicNetworkAccess """ _validation = { "id": {"readonly": True}, "name": {"readonly": True}, "type": {"readonly": True}, "provisioning_state": {"readonly": True}, "status": {"readonly": True}, "created_at": {"readonly": True}, "updated_at": {"readonly": True}, "service_bus_endpoint": {"readonly": True}, "metric_id": {"readonly": True}, } _attribute_map = { "id": {"key": "id", "type": "str"}, "name": {"key": "name", "type": "str"}, "type": {"key": "type", "type": "str"}, "tags": {"key": "tags", "type": "{str}"}, "sku": {"key": "sku", "type": "Sku"}, "provisioning_state": {"key": "properties.provisioningState", "type": "str"}, "status": {"key": "properties.status", "type": "str"}, "created_at": {"key": "properties.createdAt", "type": "iso-8601"}, "updated_at": {"key": "properties.updatedAt", "type": "iso-8601"}, "service_bus_endpoint": {"key": "properties.serviceBusEndpoint", "type": "str"}, "metric_id": {"key": "properties.metricId", "type": "str"}, "private_endpoint_connections": { "key": "properties.privateEndpointConnections", "type": "[PrivateEndpointConnection]", }, "public_network_access": {"key": "properties.publicNetworkAccess", "type": "str"}, } def __init__( self, *, tags: Optional[Dict[str, str]] = None, sku: Optional["_models.Sku"] = None, private_endpoint_connections: Optional[List["_models.PrivateEndpointConnection"]] = None, public_network_access: Optional[Union[str, "_models.PublicNetworkAccess"]] = None, **kwargs ): """ :keyword tags: Resource tags. :paramtype tags: dict[str, str] :keyword sku: SKU of the namespace. :paramtype sku: ~azure.mgmt.relay.models.Sku :keyword private_endpoint_connections: List of private endpoint connections. :paramtype private_endpoint_connections: list[~azure.mgmt.relay.models.PrivateEndpointConnection] :keyword public_network_access: This determines if traffic is allowed over public network. By default it is enabled. Known values are: "Enabled", "Disabled", and "SecuredByPerimeter". :paramtype public_network_access: str or ~azure.mgmt.relay.models.PublicNetworkAccess """ super().__init__(tags=tags, **kwargs) self.sku = sku self.provisioning_state = None self.status = None self.created_at = None self.updated_at = None self.service_bus_endpoint = None self.metric_id = None self.private_endpoint_connections = private_endpoint_connections self.public_network_access = public_network_access
[docs]class Sku(_serialization.Model): """SKU of the namespace. All required parameters must be populated in order to send to Azure. :ivar name: Name of this SKU. Required. "Standard" :vartype name: str or ~azure.mgmt.relay.models.SkuName :ivar tier: The tier of this SKU. "Standard" :vartype tier: str or ~azure.mgmt.relay.models.SkuTier """ _validation = { "name": {"required": True}, } _attribute_map = { "name": {"key": "name", "type": "str"}, "tier": {"key": "tier", "type": "str"}, } def __init__( self, *, name: Union[str, "_models.SkuName"], tier: Optional[Union[str, "_models.SkuTier"]] = None, **kwargs ): """ :keyword name: Name of this SKU. Required. "Standard" :paramtype name: str or ~azure.mgmt.relay.models.SkuName :keyword tier: The tier of this SKU. "Standard" :paramtype tier: str or ~azure.mgmt.relay.models.SkuTier """ super().__init__(**kwargs) self.name = name self.tier = tier
[docs]class SystemData(_serialization.Model): """Metadata pertaining to creation and last modification of the resource. :ivar created_by: The identity that created the resource. :vartype created_by: str :ivar created_by_type: The type of identity that created the resource. Known values are: "User", "Application", "ManagedIdentity", and "Key". :vartype created_by_type: str or ~azure.mgmt.relay.models.CreatedByType :ivar created_at: The timestamp of resource creation (UTC). :vartype created_at: ~datetime.datetime :ivar last_modified_by: The identity that last modified the resource. :vartype last_modified_by: str :ivar last_modified_by_type: The type of identity that last modified the resource. Known values are: "User", "Application", "ManagedIdentity", and "Key". :vartype last_modified_by_type: str or ~azure.mgmt.relay.models.CreatedByType :ivar last_modified_at: The timestamp of resource last modification (UTC). :vartype last_modified_at: ~datetime.datetime """ _attribute_map = { "created_by": {"key": "createdBy", "type": "str"}, "created_by_type": {"key": "createdByType", "type": "str"}, "created_at": {"key": "createdAt", "type": "iso-8601"}, "last_modified_by": {"key": "lastModifiedBy", "type": "str"}, "last_modified_by_type": {"key": "lastModifiedByType", "type": "str"}, "last_modified_at": {"key": "lastModifiedAt", "type": "iso-8601"}, } def __init__( self, *, created_by: Optional[str] = None, created_by_type: Optional[Union[str, "_models.CreatedByType"]] = None, created_at: Optional[datetime.datetime] = None, last_modified_by: Optional[str] = None, last_modified_by_type: Optional[Union[str, "_models.CreatedByType"]] = None, last_modified_at: Optional[datetime.datetime] = None, **kwargs ): """ :keyword created_by: The identity that created the resource. :paramtype created_by: str :keyword created_by_type: The type of identity that created the resource. Known values are: "User", "Application", "ManagedIdentity", and "Key". :paramtype created_by_type: str or ~azure.mgmt.relay.models.CreatedByType :keyword created_at: The timestamp of resource creation (UTC). :paramtype created_at: ~datetime.datetime :keyword last_modified_by: The identity that last modified the resource. :paramtype last_modified_by: str :keyword last_modified_by_type: The type of identity that last modified the resource. Known values are: "User", "Application", "ManagedIdentity", and "Key". :paramtype last_modified_by_type: str or ~azure.mgmt.relay.models.CreatedByType :keyword last_modified_at: The timestamp of resource last modification (UTC). :paramtype last_modified_at: ~datetime.datetime """ super().__init__(**kwargs) self.created_by = created_by self.created_by_type = created_by_type self.created_at = created_at self.last_modified_by = last_modified_by self.last_modified_by_type = last_modified_by_type self.last_modified_at = last_modified_at
[docs]class WcfRelay(ProxyResource): # pylint: disable=too-many-instance-attributes """Description of the WCF relay resource. Variables are only populated by the server, and will be ignored when sending a request. :ivar id: Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}. :vartype id: str :ivar name: The name of the resource. :vartype name: str :ivar type: The type of the resource. E.g. "Microsoft.EventHub/Namespaces" or "Microsoft.EventHub/Namespaces/EventHubs". :vartype type: str :ivar location: The geo-location where the resource lives. :vartype location: str :ivar system_data: The system meta data relating to this resource. :vartype system_data: ~azure.mgmt.relay.models.SystemData :ivar is_dynamic: Returns true if the relay is dynamic; otherwise, false. :vartype is_dynamic: bool :ivar created_at: The time the WCF relay was created. :vartype created_at: ~datetime.datetime :ivar updated_at: The time the namespace was updated. :vartype updated_at: ~datetime.datetime :ivar listener_count: The number of listeners for this relay. Note that min :1 and max:25 are supported. :vartype listener_count: int :ivar relay_type: WCF relay type. Known values are: "NetTcp" and "Http". :vartype relay_type: str or ~azure.mgmt.relay.models.Relaytype :ivar requires_client_authorization: Returns true if client authorization is needed for this relay; otherwise, false. :vartype requires_client_authorization: bool :ivar requires_transport_security: Returns true if transport security is needed for this relay; otherwise, false. :vartype requires_transport_security: bool :ivar user_metadata: The usermetadata is a placeholder to store user-defined string data for the WCF Relay endpoint. For example, it can be used to store descriptive data, such as list of teams and their contact information. Also, user-defined configuration settings can be stored. :vartype user_metadata: str """ _validation = { "id": {"readonly": True}, "name": {"readonly": True}, "type": {"readonly": True}, "location": {"readonly": True}, "system_data": {"readonly": True}, "is_dynamic": {"readonly": True}, "created_at": {"readonly": True}, "updated_at": {"readonly": True}, "listener_count": {"readonly": True, "maximum": 25, "minimum": 0}, } _attribute_map = { "id": {"key": "id", "type": "str"}, "name": {"key": "name", "type": "str"}, "type": {"key": "type", "type": "str"}, "location": {"key": "location", "type": "str"}, "system_data": {"key": "systemData", "type": "SystemData"}, "is_dynamic": {"key": "properties.isDynamic", "type": "bool"}, "created_at": {"key": "properties.createdAt", "type": "iso-8601"}, "updated_at": {"key": "properties.updatedAt", "type": "iso-8601"}, "listener_count": {"key": "properties.listenerCount", "type": "int"}, "relay_type": {"key": "properties.relayType", "type": "str"}, "requires_client_authorization": {"key": "properties.requiresClientAuthorization", "type": "bool"}, "requires_transport_security": {"key": "properties.requiresTransportSecurity", "type": "bool"}, "user_metadata": {"key": "properties.userMetadata", "type": "str"}, } def __init__( self, *, relay_type: Optional[Union[str, "_models.Relaytype"]] = None, requires_client_authorization: Optional[bool] = None, requires_transport_security: Optional[bool] = None, user_metadata: Optional[str] = None, **kwargs ): """ :keyword relay_type: WCF relay type. Known values are: "NetTcp" and "Http". :paramtype relay_type: str or ~azure.mgmt.relay.models.Relaytype :keyword requires_client_authorization: Returns true if client authorization is needed for this relay; otherwise, false. :paramtype requires_client_authorization: bool :keyword requires_transport_security: Returns true if transport security is needed for this relay; otherwise, false. :paramtype requires_transport_security: bool :keyword user_metadata: The usermetadata is a placeholder to store user-defined string data for the WCF Relay endpoint. For example, it can be used to store descriptive data, such as list of teams and their contact information. Also, user-defined configuration settings can be stored. :paramtype user_metadata: str """ super().__init__(**kwargs) self.system_data = None self.is_dynamic = None self.created_at = None self.updated_at = None self.listener_count = None self.relay_type = relay_type self.requires_client_authorization = requires_client_authorization self.requires_transport_security = requires_transport_security self.user_metadata = user_metadata
[docs]class WcfRelaysListResult(_serialization.Model): """The response of the list WCF relay operation. :ivar value: Result of the list WCF relay operation. :vartype value: list[~azure.mgmt.relay.models.WcfRelay] :ivar next_link: Link to the next set of results. Not empty if value contains incomplete list of WCF relays. :vartype next_link: str """ _attribute_map = { "value": {"key": "value", "type": "[WcfRelay]"}, "next_link": {"key": "nextLink", "type": "str"}, } def __init__(self, *, value: Optional[List["_models.WcfRelay"]] = None, next_link: Optional[str] = None, **kwargs): """ :keyword value: Result of the list WCF relay operation. :paramtype value: list[~azure.mgmt.relay.models.WcfRelay] :keyword next_link: Link to the next set of results. Not empty if value contains incomplete list of WCF relays. :paramtype next_link: str """ super().__init__(**kwargs) self.value = value self.next_link = next_link