-
Notifications
You must be signed in to change notification settings - Fork 2.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[AutoPR] network/resource-manager (#4141)
* Generated from f4847630d0ac480f6c18a43cc92d3e5798ab14bb (#4133) Fix duplicate path in old Network API version * [AutoPR network/resource-manager] Fix errors with ddosCustomPolicy.json (#4143) * Generated from f786e806eeb7e1217a996e89ba30fb7f230a4b8b Add ddosCustomPolicy.json to readme.md and fix spec errors * Generated from dbd13ad4dd6a402b16ce899c7c6915e147405b65 Add ddosCustomPolicy.json to readme.md and fix spec errors * Generated from dbd13ad4dd6a402b16ce899c7c6915e147405b65 Add ddosCustomPolicy.json to readme.md and fix spec errors * 2.5.1
- Loading branch information
1 parent
53153e6
commit 84bfbde
Showing
13 changed files
with
765 additions
and
68 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
80 changes: 80 additions & 0 deletions
80
azure-mgmt-network/azure/mgmt/network/v2018_11_01/models/ddos_custom_policy.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
# coding=utf-8 | ||
# -------------------------------------------------------------------------- | ||
# 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. | ||
# -------------------------------------------------------------------------- | ||
|
||
from .resource import Resource | ||
|
||
|
||
class DdosCustomPolicy(Resource): | ||
"""A DDoS custom policy in a resource group. | ||
Variables are only populated by the server, and will be ignored when | ||
sending a request. | ||
:param id: Resource ID. | ||
:type id: str | ||
:ivar name: Resource name. | ||
:vartype name: str | ||
:ivar type: Resource type. | ||
:vartype type: str | ||
:param location: Resource location. | ||
:type location: str | ||
:param tags: Resource tags. | ||
:type tags: dict[str, str] | ||
:ivar resource_guid: The resource GUID property of the DDoS custom policy | ||
resource. It uniquely identifies the resource, even if the user changes | ||
its name or migrate the resource across subscriptions or resource groups. | ||
:vartype resource_guid: str | ||
:ivar provisioning_state: The provisioning state of the DDoS custom policy | ||
resource. Possible values are: 'Succeeded', 'Updating', 'Deleting', and | ||
'Failed'. | ||
:vartype provisioning_state: str | ||
:ivar public_ip_addresses: The list of public IPs associated with the DDoS | ||
custom policy resource. This list is read-only. | ||
:vartype public_ip_addresses: | ||
list[~azure.mgmt.network.v2018_11_01.models.SubResource] | ||
:param protocol_custom_settings: The protocol-specific DDoS policy | ||
customization parameters. | ||
:type protocol_custom_settings: | ||
list[~azure.mgmt.network.v2018_11_01.models.ProtocolCustomSettingsFormat] | ||
:ivar etag: A unique read-only string that changes whenever the resource | ||
is updated. | ||
:vartype etag: str | ||
""" | ||
|
||
_validation = { | ||
'name': {'readonly': True}, | ||
'type': {'readonly': True}, | ||
'resource_guid': {'readonly': True}, | ||
'provisioning_state': {'readonly': True}, | ||
'public_ip_addresses': {'readonly': True}, | ||
'etag': {'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}'}, | ||
'resource_guid': {'key': 'properties.resourceGuid', 'type': 'str'}, | ||
'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, | ||
'public_ip_addresses': {'key': 'properties.publicIPAddresses', 'type': '[SubResource]'}, | ||
'protocol_custom_settings': {'key': 'properties.protocolCustomSettings', 'type': '[ProtocolCustomSettingsFormat]'}, | ||
'etag': {'key': 'etag', 'type': 'str'}, | ||
} | ||
|
||
def __init__(self, **kwargs): | ||
super(DdosCustomPolicy, self).__init__(**kwargs) | ||
self.resource_guid = None | ||
self.provisioning_state = None | ||
self.public_ip_addresses = None | ||
self.protocol_custom_settings = kwargs.get('protocol_custom_settings', None) | ||
self.etag = None |
80 changes: 80 additions & 0 deletions
80
azure-mgmt-network/azure/mgmt/network/v2018_11_01/models/ddos_custom_policy_py3.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
# coding=utf-8 | ||
# -------------------------------------------------------------------------- | ||
# 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. | ||
# -------------------------------------------------------------------------- | ||
|
||
from .resource_py3 import Resource | ||
|
||
|
||
class DdosCustomPolicy(Resource): | ||
"""A DDoS custom policy in a resource group. | ||
Variables are only populated by the server, and will be ignored when | ||
sending a request. | ||
:param id: Resource ID. | ||
:type id: str | ||
:ivar name: Resource name. | ||
:vartype name: str | ||
:ivar type: Resource type. | ||
:vartype type: str | ||
:param location: Resource location. | ||
:type location: str | ||
:param tags: Resource tags. | ||
:type tags: dict[str, str] | ||
:ivar resource_guid: The resource GUID property of the DDoS custom policy | ||
resource. It uniquely identifies the resource, even if the user changes | ||
its name or migrate the resource across subscriptions or resource groups. | ||
:vartype resource_guid: str | ||
:ivar provisioning_state: The provisioning state of the DDoS custom policy | ||
resource. Possible values are: 'Succeeded', 'Updating', 'Deleting', and | ||
'Failed'. | ||
:vartype provisioning_state: str | ||
:ivar public_ip_addresses: The list of public IPs associated with the DDoS | ||
custom policy resource. This list is read-only. | ||
:vartype public_ip_addresses: | ||
list[~azure.mgmt.network.v2018_11_01.models.SubResource] | ||
:param protocol_custom_settings: The protocol-specific DDoS policy | ||
customization parameters. | ||
:type protocol_custom_settings: | ||
list[~azure.mgmt.network.v2018_11_01.models.ProtocolCustomSettingsFormat] | ||
:ivar etag: A unique read-only string that changes whenever the resource | ||
is updated. | ||
:vartype etag: str | ||
""" | ||
|
||
_validation = { | ||
'name': {'readonly': True}, | ||
'type': {'readonly': True}, | ||
'resource_guid': {'readonly': True}, | ||
'provisioning_state': {'readonly': True}, | ||
'public_ip_addresses': {'readonly': True}, | ||
'etag': {'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}'}, | ||
'resource_guid': {'key': 'properties.resourceGuid', 'type': 'str'}, | ||
'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, | ||
'public_ip_addresses': {'key': 'properties.publicIPAddresses', 'type': '[SubResource]'}, | ||
'protocol_custom_settings': {'key': 'properties.protocolCustomSettings', 'type': '[ProtocolCustomSettingsFormat]'}, | ||
'etag': {'key': 'etag', 'type': 'str'}, | ||
} | ||
|
||
def __init__(self, *, id: str=None, location: str=None, tags=None, protocol_custom_settings=None, **kwargs) -> None: | ||
super(DdosCustomPolicy, self).__init__(id=id, location=location, tags=tags, **kwargs) | ||
self.resource_guid = None | ||
self.provisioning_state = None | ||
self.public_ip_addresses = None | ||
self.protocol_custom_settings = protocol_custom_settings | ||
self.etag = None |
Oops, something went wrong.