Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -400,10 +400,6 @@ class CognitiveServicesAccountProperties(Model):
:vartype endpoint: str
:ivar internal_id: The internal identifier.
:vartype internal_id: str
:ivar capabilities: Gets the capabilities of the cognitive services
account. Each item indicates a specific feature is supported by this
account. The value is read only and for reference only.
:vartype capabilities: list[str]
:param custom_sub_domain_name: Optional subdomain name used for
token-based authentication.
:type custom_sub_domain_name: str
Expand Down Expand Up @@ -433,14 +429,12 @@ class CognitiveServicesAccountProperties(Model):
'provisioning_state': {'readonly': True},
'endpoint': {'readonly': True},
'internal_id': {'readonly': True},
'capabilities': {'readonly': True},
}

_attribute_map = {
'provisioning_state': {'key': 'provisioningState', 'type': 'str'},
'endpoint': {'key': 'endpoint', 'type': 'str'},
'internal_id': {'key': 'internalId', 'type': 'str'},
'capabilities': {'key': 'capabilities', 'type': '[str]'},
'custom_sub_domain_name': {'key': 'customSubDomainName', 'type': 'str'},
'network_acls': {'key': 'networkAcls', 'type': 'NetworkRuleSet'},
'encryption': {'key': 'encryption', 'type': 'Encryption'},
Expand All @@ -455,7 +449,6 @@ def __init__(self, **kwargs):
self.provisioning_state = None
self.endpoint = None
self.internal_id = None
self.capabilities = None
self.custom_sub_domain_name = kwargs.get('custom_sub_domain_name', None)
self.network_acls = kwargs.get('network_acls', None)
self.encryption = kwargs.get('encryption', None)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -400,10 +400,6 @@ class CognitiveServicesAccountProperties(Model):
:vartype endpoint: str
:ivar internal_id: The internal identifier.
:vartype internal_id: str
:ivar capabilities: Gets the capabilities of the cognitive services
account. Each item indicates a specific feature is supported by this
account. The value is read only and for reference only.
:vartype capabilities: list[str]
:param custom_sub_domain_name: Optional subdomain name used for
token-based authentication.
:type custom_sub_domain_name: str
Expand Down Expand Up @@ -433,14 +429,12 @@ class CognitiveServicesAccountProperties(Model):
'provisioning_state': {'readonly': True},
'endpoint': {'readonly': True},
'internal_id': {'readonly': True},
'capabilities': {'readonly': True},
}

_attribute_map = {
'provisioning_state': {'key': 'provisioningState', 'type': 'str'},
'endpoint': {'key': 'endpoint', 'type': 'str'},
'internal_id': {'key': 'internalId', 'type': 'str'},
'capabilities': {'key': 'capabilities', 'type': '[str]'},
'custom_sub_domain_name': {'key': 'customSubDomainName', 'type': 'str'},
'network_acls': {'key': 'networkAcls', 'type': 'NetworkRuleSet'},
'encryption': {'key': 'encryption', 'type': 'Encryption'},
Expand All @@ -455,7 +449,6 @@ def __init__(self, *, custom_sub_domain_name: str=None, network_acls=None, encry
self.provisioning_state = None
self.endpoint = None
self.internal_id = None
self.capabilities = None
self.custom_sub_domain_name = custom_sub_domain_name
self.network_acls = network_acls
self.encryption = encryption
Expand Down