Skip to content

Commit c7b837a

Browse files
author
SDKAuto
committed
CodeGen from PR 24945 in Azure/azure-rest-api-specs
Merge a29f0de44742a20111cc4c58fbd18a8650f154cc into 55fc71748c6f51a049fb77aa162ca797aabfbae6
1 parent 85cceeb commit c7b837a

File tree

690 files changed

+3677
-4058
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

690 files changed

+3677
-4058
lines changed
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
2-
"commit": "02acc29a5618a6998469a7fcc750e301f130a19f",
2+
"commit": "7e403e0aa2b192b51eab08c37eb8162777486d4f",
33
"repository_url": "https://github.com/Azure/azure-rest-api-specs",
4-
"autorest": "3.9.2",
4+
"autorest": "3.9.6",
55
"use": [
66
"@autorest/python@6.6.0",
7-
"@autorest/modelerfour@4.24.3"
7+
"@autorest/modelerfour@4.26.2"
88
],
9-
"autorest_command": "autorest specification/network/resource-manager/readme.md --generate-sample=True --include-x-ms-examples-original-file=True --python --python-sdks-folder=/home/vsts/work/1/azure-sdk-for-python/sdk --use=@autorest/python@6.6.0 --use=@autorest/modelerfour@4.24.3 --version=3.9.2 --version-tolerant=False",
9+
"autorest_command": "autorest specification/network/resource-manager/readme.md --generate-sample=True --include-x-ms-examples-original-file=True --python --python-sdks-folder=/mnt/vss/_work/1/s/azure-sdk-for-python/sdk --use=@autorest/python@6.6.0 --use=@autorest/modelerfour@4.26.2 --version=3.9.6 --version-tolerant=False",
1010
"readme": "specification/network/resource-manager/readme.md"
1111
}

sdk/network/azure-mgmt-network/azure/mgmt/network/_client.py

Lines changed: 133 additions & 165 deletions
Large diffs are not rendered by default.

sdk/network/azure-mgmt-network/azure/mgmt/network/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
77
# --------------------------------------------------------------------------
88

9-
VERSION = "23.1.0"
9+
VERSION = "1.0.0b1"

sdk/network/azure-mgmt-network/azure/mgmt/network/aio/_client.py

Lines changed: 133 additions & 165 deletions
Large diffs are not rendered by default.

sdk/network/azure-mgmt-network/azure/mgmt/network/aio/operations/__init__.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -135,8 +135,6 @@
135135
NspAccessRulesReconcileOperations,
136136
NspAssociationReconcileOperations,
137137
NspAssociationsOperations,
138-
NspLinkReconcileOperations,
139-
NspLinkReferenceReconcileOperations,
140138
NspLinkReferencesOperations,
141139
NspLinksOperations,
142140
NspProfilesOperations,
@@ -299,8 +297,6 @@
299297
"NspAccessRulesReconcileOperations",
300298
"NspAssociationReconcileOperations",
301299
"NspAssociationsOperations",
302-
"NspLinkReconcileOperations",
303-
"NspLinkReferenceReconcileOperations",
304300
"NspLinkReferencesOperations",
305301
"NspLinksOperations",
306302
"NspProfilesOperations",

sdk/network/azure-mgmt-network/azure/mgmt/network/aio/operations/_operations.py

Lines changed: 1003 additions & 1169 deletions
Large diffs are not rendered by default.

sdk/network/azure-mgmt-network/azure/mgmt/network/models/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -956,6 +956,7 @@
956956
UseHubGateway,
957957
UserRuleKind,
958958
ActionType,
959+
AdminState,
959960
ApplicationGatewayClientRevocationOptions,
960961
ApplicationGatewayFirewallRateLimitDuration,
961962
ApplicationGatewayFirewallUserSessionVariable,
@@ -1950,6 +1951,7 @@
19501951
"UseHubGateway",
19511952
"UserRuleKind",
19521953
"ActionType",
1954+
"AdminState",
19531955
"ApplicationGatewayClientRevocationOptions",
19541956
"ApplicationGatewayFirewallRateLimitDuration",
19551957
"ApplicationGatewayFirewallUserSessionVariable",

sdk/network/azure-mgmt-network/azure/mgmt/network/models/_enums.py

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -692,7 +692,6 @@ class ApplicationGatewayCustomErrorStatusCode(str, Enum, metaclass=CaseInsensiti
692692
HTTP_STATUS404 = "HttpStatus404"
693693
HTTP_STATUS405 = "HttpStatus405"
694694
HTTP_STATUS408 = "HttpStatus408"
695-
HTTP_STATUS499 = "HttpStatus499"
696695
HTTP_STATUS500 = "HttpStatus500"
697696
HTTP_STATUS502 = "HttpStatus502"
698697
HTTP_STATUS503 = "HttpStatus503"
@@ -1531,6 +1530,14 @@ class ActionType(str, Enum, metaclass=CaseInsensitiveEnumMeta):
15311530
BLOCK = "Block"
15321531
LOG = "Log"
15331532

1533+
class AdminState(str, Enum, metaclass=CaseInsensitiveEnumMeta):
1534+
"""Property to indicate if the Express Route Gateway serves traffic when there are multiple
1535+
Express Route Gateways in the vnet.
1536+
"""
1537+
1538+
ENABLED = "Enabled"
1539+
DISABLED = "Disabled"
1540+
15341541
class ApplicationGatewayClientRevocationOptions(str, Enum, metaclass=CaseInsensitiveEnumMeta):
15351542
"""Verify client certificate revocation status."""
15361543

sdk/network/azure-mgmt-network/azure/mgmt/network/models/_models.py

Lines changed: 101 additions & 18 deletions
Large diffs are not rendered by default.

sdk/network/azure-mgmt-network/azure/mgmt/network/operations/__init__.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -135,8 +135,6 @@
135135
NspAccessRulesReconcileOperations,
136136
NspAssociationReconcileOperations,
137137
NspAssociationsOperations,
138-
NspLinkReconcileOperations,
139-
NspLinkReferenceReconcileOperations,
140138
NspLinkReferencesOperations,
141139
NspLinksOperations,
142140
NspProfilesOperations,
@@ -299,8 +297,6 @@
299297
"NspAccessRulesReconcileOperations",
300298
"NspAssociationReconcileOperations",
301299
"NspAssociationsOperations",
302-
"NspLinkReconcileOperations",
303-
"NspLinkReferenceReconcileOperations",
304300
"NspLinkReferencesOperations",
305301
"NspLinksOperations",
306302
"NspProfilesOperations",

0 commit comments

Comments
 (0)