diff --git a/src/dnc/HISTORY.rst b/src/dnc/HISTORY.rst index 3678f1e5e6b..2e75d977193 100644 --- a/src/dnc/HISTORY.rst +++ b/src/dnc/HISTORY.rst @@ -2,6 +2,9 @@ Release History =============== +0.2.1 +++++++ +* Add optional "allocationBlockPrefixSize" parameter for subnet delegation 0.2.0 ++++++ diff --git a/src/dnc/azext_dnc/aaz/latest/dnc/delegated_subnet_service/_create.py b/src/dnc/azext_dnc/aaz/latest/dnc/delegated_subnet_service/_create.py index 45f4f9c46da..8f18ad51025 100644 --- a/src/dnc/azext_dnc/aaz/latest/dnc/delegated_subnet_service/_create.py +++ b/src/dnc/azext_dnc/aaz/latest/dnc/delegated_subnet_service/_create.py @@ -19,13 +19,13 @@ class Create(AAZCommand): """Create delegated subnet resource. :example: Create a subnet delegated to DNC - az dnc delegated-subnet-service create --location "West US" --id "/subscriptions/613192d7-503f-477a-9cfe-4efc3ee2bd60/resourceGroups/TestRG/providers/Microsoft.DelegatedNetwork/controller/dnctestcontroller" --subnet-details-id "/subscriptions/613192d7-503f-477a-9cfe-4efc3ee2bd60/resourceGroups/TestRG/providers/Microsoft.Network/virtualNetworks/testvnet/subnets/testsubnet" --resource-group "TestRG" --resource-name "delegated1" + az dnc delegated-subnet-service create --location "West US" --id "/subscriptions/613192d7-503f-477a-9cfe-4efc3ee2bd60/resourceGroups/TestRG/providers/Microsoft.DelegatedNetwork/controller/dnctestcontroller" --subnet-details-id "/subscriptions/613192d7-503f-477a-9cfe-4efc3ee2bd60/resourceGroups/TestRG/providers/Microsoft.Network/virtualNetworks/testvnet/subnets/testsubnet" --resource-group "TestRG" --resource-name "delegated1" --allocation-block-prefix-size 27 """ _aaz_info = { - "version": "2023-05-18-preview", + "version": "2023-06-27-preview", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.delegatednetwork/delegatedsubnets/{}", "2023-05-18-preview"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.delegatednetwork/delegatedsubnets/{}", "2023-06-27-preview"], ] } @@ -47,7 +47,6 @@ def _build_arguments_schema(cls, *args, **kwargs): _args_schema = cls._args_schema _args_schema.resource_group = AAZResourceGroupNameArg( - help="Name of resource group. You can configure the default group using `az configure --defaults group=`.", required=True, ) _args_schema.resource_name = AAZStrArg( @@ -89,6 +88,20 @@ def _build_arguments_schema(cls, *args, **kwargs): tags = cls._args_schema.tags tags.Element = AAZStrArg() + # define Arg Group "Properties" + + _args_schema = cls._args_schema + _args_schema.allocation_block_prefix_size = AAZIntArg( + options=["-a", "--allocation-block-prefix-size"], + arg_group="Properties", + help={"short-summary": "Defines prefix size of CIDR blocks allocated to nodes in VnetBlock Mode.", "long-summary": "Defines prefix size of CIDR blocks allocated to nodes in VnetBlock Mode. This should be greater than Delegated subnet's prefix size by a minimum of 3."}, + is_preview=True, + fmt=AAZIntArgFormat( + maximum=30, + minimum=24, + ), + ) + # define Arg Group "SubnetDetails" _args_schema = cls._args_schema @@ -180,7 +193,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2023-05-18-preview", + "api-version", "2023-06-27-preview", required=True, ), } @@ -211,6 +224,7 @@ def content(self): properties = _builder.get(".properties") if properties is not None: + properties.set_prop("allocationBlockPrefixSize", AAZIntType, ".allocation_block_prefix_size") properties.set_prop("controllerDetails", AAZObjectType) properties.set_prop("subnetDetails", AAZObjectType) @@ -262,6 +276,9 @@ def _build_schema_on_200_201(cls): ) properties = cls._schema_on_200_201.properties + properties.allocation_block_prefix_size = AAZIntType( + serialized_name="allocationBlockPrefixSize", + ) properties.controller_details = AAZObjectType( serialized_name="controllerDetails", ) diff --git a/src/dnc/azext_dnc/aaz/latest/dnc/delegated_subnet_service/_delete.py b/src/dnc/azext_dnc/aaz/latest/dnc/delegated_subnet_service/_delete.py index ed6104a0931..80888663e37 100644 --- a/src/dnc/azext_dnc/aaz/latest/dnc/delegated_subnet_service/_delete.py +++ b/src/dnc/azext_dnc/aaz/latest/dnc/delegated_subnet_service/_delete.py @@ -24,9 +24,9 @@ class Delete(AAZCommand): """ _aaz_info = { - "version": "2023-05-18-preview", + "version": "2023-06-27-preview", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.delegatednetwork/delegatedsubnets/{}", "2023-05-18-preview"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.delegatednetwork/delegatedsubnets/{}", "2023-06-27-preview"], ] } @@ -48,7 +48,6 @@ def _build_arguments_schema(cls, *args, **kwargs): _args_schema = cls._args_schema _args_schema.resource_group = AAZResourceGroupNameArg( - help="Name of resource group. You can configure the default group using `az configure --defaults group=`.", required=True, ) _args_schema.resource_name = AAZStrArg( @@ -157,7 +156,7 @@ def query_parameters(self): "forceDelete", self.ctx.args.force_delete, ), **self.serialize_query_param( - "api-version", "2023-05-18-preview", + "api-version", "2023-06-27-preview", required=True, ), } diff --git a/src/dnc/azext_dnc/aaz/latest/dnc/delegated_subnet_service/_show.py b/src/dnc/azext_dnc/aaz/latest/dnc/delegated_subnet_service/_show.py index a3bdcc6e074..5d2df95de77 100644 --- a/src/dnc/azext_dnc/aaz/latest/dnc/delegated_subnet_service/_show.py +++ b/src/dnc/azext_dnc/aaz/latest/dnc/delegated_subnet_service/_show.py @@ -23,9 +23,9 @@ class Show(AAZCommand): """ _aaz_info = { - "version": "2023-05-18-preview", + "version": "2023-06-27-preview", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.delegatednetwork/delegatedsubnets/{}", "2023-05-18-preview"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.delegatednetwork/delegatedsubnets/{}", "2023-06-27-preview"], ] } @@ -46,7 +46,6 @@ def _build_arguments_schema(cls, *args, **kwargs): _args_schema = cls._args_schema _args_schema.resource_group = AAZResourceGroupNameArg( - help="Name of resource group. You can configure the default group using `az configure --defaults group=`.", required=True, ) _args_schema.resource_name = AAZStrArg( @@ -127,7 +126,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2023-05-18-preview", + "api-version", "2023-06-27-preview", required=True, ), } @@ -176,6 +175,9 @@ def _build_schema_on_200(cls): ) properties = cls._schema_on_200.properties + properties.allocation_block_prefix_size = AAZIntType( + serialized_name="allocationBlockPrefixSize", + ) properties.controller_details = AAZObjectType( serialized_name="controllerDetails", ) diff --git a/src/dnc/azext_dnc/aaz/latest/dnc/delegated_subnet_service/_wait.py b/src/dnc/azext_dnc/aaz/latest/dnc/delegated_subnet_service/_wait.py index 5d2240b7d91..ccc56a63db8 100644 --- a/src/dnc/azext_dnc/aaz/latest/dnc/delegated_subnet_service/_wait.py +++ b/src/dnc/azext_dnc/aaz/latest/dnc/delegated_subnet_service/_wait.py @@ -20,7 +20,7 @@ class Wait(AAZWaitCommand): _aaz_info = { "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.delegatednetwork/delegatedsubnets/{}", "2023-05-18-preview"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.delegatednetwork/delegatedsubnets/{}", "2023-06-27-preview"], ] } @@ -41,7 +41,6 @@ def _build_arguments_schema(cls, *args, **kwargs): _args_schema = cls._args_schema _args_schema.resource_group = AAZResourceGroupNameArg( - help="Name of resource group. You can configure the default group using `az configure --defaults group=`.", required=True, ) _args_schema.resource_name = AAZStrArg( @@ -122,7 +121,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2023-05-18-preview", + "api-version", "2023-06-27-preview", required=True, ), } @@ -171,6 +170,9 @@ def _build_schema_on_200(cls): ) properties = cls._schema_on_200.properties + properties.allocation_block_prefix_size = AAZIntType( + serialized_name="allocationBlockPrefixSize", + ) properties.controller_details = AAZObjectType( serialized_name="controllerDetails", ) diff --git a/src/dnc/azext_dnc/azext_metadata.json b/src/dnc/azext_dnc/azext_metadata.json index 7923ce3c67b..24862c32571 100644 --- a/src/dnc/azext_dnc/azext_metadata.json +++ b/src/dnc/azext_dnc/azext_metadata.json @@ -1,4 +1,4 @@ { "azext.isPreview": true, - "azext.minCliCoreVersion": "2.49.0" + "azext.minCliCoreVersion": "2.51.0" } \ No newline at end of file diff --git a/src/dnc/azext_dnc/tests/latest/recordings/test_dnc_controller_create.yaml b/src/dnc/azext_dnc/tests/latest/recordings/test_dnc_controller_create.yaml index f76bb1048ae..25bc2a54ca3 100644 --- a/src/dnc/azext_dnc/tests/latest/recordings/test_dnc_controller_create.yaml +++ b/src/dnc/azext_dnc/tests/latest/recordings/test_dnc_controller_create.yaml @@ -17,7 +17,7 @@ interactions: ParameterSetName: - --location --resource-name --resource-group User-Agent: - - AZURECLI/2.50.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.51.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dnc000001/providers/Microsoft.DelegatedNetwork/controller/clitestcontroller?api-version=2023-05-18-preview response: @@ -31,25 +31,23 @@ interactions: content-type: - application/json date: - - Fri, 28 Jul 2023 20:49:02 GMT + - Tue, 22 Aug 2023 22:35:16 GMT expires: - '-1' pragma: - no-cache request-context: - appId=cid-v1:82487bea-6925-46b8-a5c9-0bcae97f8f27 - server: - - Kestrel strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' + x-msedge-ref: + - 'Ref A: 2B685273271A4D7096DB7B0EADAE207D Ref B: CO6AA3150218035 Ref C: 2023-08-22T22:35:16Z' status: code: 200 message: OK diff --git a/src/dnc/azext_dnc/tests/latest/recordings/test_dnc_controller_create_test_purpose.yaml b/src/dnc/azext_dnc/tests/latest/recordings/test_dnc_controller_create_test_purpose.yaml index 370b2d9d154..22cd2c3693e 100644 --- a/src/dnc/azext_dnc/tests/latest/recordings/test_dnc_controller_create_test_purpose.yaml +++ b/src/dnc/azext_dnc/tests/latest/recordings/test_dnc_controller_create_test_purpose.yaml @@ -17,39 +17,37 @@ interactions: ParameterSetName: - --location --resource-name --resource-group --purpose User-Agent: - - AZURECLI/2.50.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.51.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dnc000001/providers/Microsoft.DelegatedNetwork/controller/clitestcontroller?api-version=2023-05-18-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dnc000001/providers/Microsoft.DelegatedNetwork/controller/clitestcontroller","location":"centraluseuap","name":"clitestcontroller","type":"Microsoft.DelegatedNetwork/controller","properties":{"dncAppId":"a91b1853-4403-4f54-b5cb-d1ea19d90c37","dncEndpoint":"https://openai-centraluseuap.dnc.azure.com","controllerProperties":{"dncAppId":"a91b1853-4403-4f54-b5cb-d1ea19d90c37","dncEndpoint":"https://openai-centraluseuap.dnc.azure.com","dncTenantId":null},"resourceGuid":"33b2d4dd-1290-4810-8e16-8283177b4538","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dnc000001/providers/Microsoft.DelegatedNetwork/controller/clitestcontroller","location":"centraluseuap","name":"clitestcontroller","type":"Microsoft.DelegatedNetwork/controller","properties":{"dncAppId":"a91b1853-4403-4f54-b5cb-d1ea19d90c37","dncEndpoint":"https://test.openai-centraluseuap.dnc.azure.com","controllerProperties":{"dncAppId":"a91b1853-4403-4f54-b5cb-d1ea19d90c37","dncEndpoint":"https://test.openai-centraluseuap.dnc.azure.com","dncTenantId":null},"resourceGuid":"33b2d4dd-1290-4810-8e16-8283177b4538","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '624' + - '634' content-type: - application/json date: - - Fri, 28 Jul 2023 20:49:02 GMT + - Tue, 22 Aug 2023 22:35:17 GMT expires: - '-1' pragma: - no-cache request-context: - appId=cid-v1:82487bea-6925-46b8-a5c9-0bcae97f8f27 - server: - - Kestrel strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: E0A17B8C4F86499E94D3AE532F390D4C Ref B: CO6AA3150219031 Ref C: 2023-08-22T22:35:16Z' status: code: 200 message: OK diff --git a/src/dnc/azext_dnc/tests/latest/recordings/test_dnc_controller_delete.yaml b/src/dnc/azext_dnc/tests/latest/recordings/test_dnc_controller_delete.yaml index 6be042c0df8..975e286c23b 100644 --- a/src/dnc/azext_dnc/tests/latest/recordings/test_dnc_controller_delete.yaml +++ b/src/dnc/azext_dnc/tests/latest/recordings/test_dnc_controller_delete.yaml @@ -15,7 +15,7 @@ interactions: ParameterSetName: - --resource-name --resource-group --yes User-Agent: - - AZURECLI/2.50.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.51.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dnc000001/providers/Microsoft.DelegatedNetwork/controller/clitestcontroller?api-version=2023-05-18-preview response: @@ -25,17 +25,21 @@ interactions: cache-control: - no-cache date: - - Fri, 28 Jul 2023 20:49:01 GMT + - Tue, 22 Aug 2023 22:35:15 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - '14999' + x-msedge-ref: + - 'Ref A: 84FD5ACAA78C405E9191C01E818F043C Ref B: CO6AA3150217039 Ref C: 2023-08-22T22:35:16Z' status: code: 204 message: No Content diff --git a/src/dnc/azext_dnc/tests/latest/recordings/test_dnc_controller_show.yaml b/src/dnc/azext_dnc/tests/latest/recordings/test_dnc_controller_show.yaml index 3a17d749aad..b4dedc95bd5 100644 --- a/src/dnc/azext_dnc/tests/latest/recordings/test_dnc_controller_show.yaml +++ b/src/dnc/azext_dnc/tests/latest/recordings/test_dnc_controller_show.yaml @@ -17,7 +17,7 @@ interactions: ParameterSetName: - --location --resource-name --resource-group User-Agent: - - AZURECLI/2.50.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.51.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dnc000001/providers/Microsoft.DelegatedNetwork/controller/clitestcontroller?api-version=2023-05-18-preview response: @@ -31,25 +31,23 @@ interactions: content-type: - application/json date: - - Fri, 28 Jul 2023 20:49:02 GMT + - Tue, 22 Aug 2023 22:35:16 GMT expires: - '-1' pragma: - no-cache request-context: - appId=cid-v1:82487bea-6925-46b8-a5c9-0bcae97f8f27 - server: - - Kestrel strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: 58CBD570784B42759F5F242AE3FDA24C Ref B: CO6AA3150220031 Ref C: 2023-08-22T22:35:16Z' status: code: 200 message: OK @@ -67,7 +65,7 @@ interactions: ParameterSetName: - --resource-name --resource-group User-Agent: - - AZURECLI/2.50.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.51.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dnc000001/providers/Microsoft.DelegatedNetwork/controller/clitestcontroller?api-version=2023-05-18-preview response: @@ -81,23 +79,21 @@ interactions: content-type: - application/json date: - - Fri, 28 Jul 2023 20:49:03 GMT + - Tue, 22 Aug 2023 22:35:17 GMT expires: - '-1' pragma: - no-cache request-context: - appId=cid-v1:82487bea-6925-46b8-a5c9-0bcae97f8f27 - server: - - Kestrel strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: A46A4AFF49DF42DA9FB3A5BCFDEE8DAD Ref B: CO6AA3150220039 Ref C: 2023-08-22T22:35:17Z' status: code: 200 message: OK diff --git a/src/dnc/azext_dnc/tests/latest/recordings/test_dnc_delegated_subnet_service_create.yaml b/src/dnc/azext_dnc/tests/latest/recordings/test_dnc_delegated_subnet_service_create.yaml index 0052deaa08d..16b0a18200a 100644 --- a/src/dnc/azext_dnc/tests/latest/recordings/test_dnc_delegated_subnet_service_create.yaml +++ b/src/dnc/azext_dnc/tests/latest/recordings/test_dnc_delegated_subnet_service_create.yaml @@ -17,7 +17,7 @@ interactions: ParameterSetName: - --location --resource-name --resource-group User-Agent: - - AZURECLI/2.50.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.51.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dnc000001/providers/Microsoft.DelegatedNetwork/controller/clitestcontroller?api-version=2023-05-18-preview response: @@ -31,25 +31,23 @@ interactions: content-type: - application/json date: - - Fri, 28 Jul 2023 20:49:14 GMT + - Tue, 22 Aug 2023 22:35:29 GMT expires: - '-1' pragma: - no-cache request-context: - appId=cid-v1:82487bea-6925-46b8-a5c9-0bcae97f8f27 - server: - - Kestrel strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: 4F7CD3F83A894E84B85150B637700A63 Ref B: CO6AA3150218021 Ref C: 2023-08-22T22:35:29Z' status: code: 200 message: OK @@ -73,20 +71,20 @@ interactions: ParameterSetName: - --location --id --subnet-details-id --resource-group --resource-name User-Agent: - - AZURECLI/2.50.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.51.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dnc000001/providers/Microsoft.DelegatedNetwork/delegatedSubnets/delegated1?api-version=2023-05-18-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dnc000001/providers/Microsoft.DelegatedNetwork/delegatedSubnets/delegated1?api-version=2023-06-27-preview response: body: string: '{"ErrorResponse":{"error":{"code":"500","message":"Error in API: PutDelegateSubnetSAL creation failed:Microsoft.Azure.ContainerNetworking.DncRP.ErrorResponseMessageException: Failed to create SAL token, salRequest: ServiceAssociationLink: Id: , Name: Properties: ServiceAssociationLinkProperties: ProvisioningState: LinkedResourceType: - Microsoft.DelegatedNetwork/controller ParentResourceGuid: 7290cf68-2875-486a-a2c4-153fa6d445e6 + Microsoft.DelegatedNetwork/controller ParentResourceGuid: 6536a707-d2ce-4dd1-be86-f6574ffade8c Locations: centraluseuap Details: ServiceAssociationLinkDetail: Id: , Name: ManagedDNCDetail, Properties: ServiceAssociationLinkDetailProperties: ProvisioningState: - , PrimaryContextRequestId: a1650b48-deae-4795-9377-b66553b1d94b, SecondaryContextRequestId: - 6cf1d661-6e94-4afa-878d-cd2f53f54098,PrimaryContextId: SecondaryContextId: + , PrimaryContextRequestId: aae4b78c-35e2-40bd-880e-40f3b6fed4e4, SecondaryContextRequestId: + 71aaf74a-ed5b-457e-8820-263b393df3a5,PrimaryContextId: SecondaryContextId: , subnetResourceId:/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dnc000001/providers/Microsoft.Network/virtualNetworks/cli_test_dnc000002/subnets/default internal ex: System.Exception: ResponseMessage: System.Net.Http.HttpConnectionResponseContent, status code BadRequest, Reason: Bad Request, internal exception: System.Net.Http.HttpRequestException: @@ -102,21 +100,22 @@ interactions: /usr/local/Networking-Aquarius/src/DncRP/Server/AzResourceBroker/AzResourceBroker.cs:line 239\n at Microsoft.Azure.ContainerNetworking.DncRP.AzResourceBroker.PutResourceAsync[T](String tenantId, String resourceId, String apiVersion, T requestBody) in /usr/local/Networking-Aquarius/src/DncRP/Server/AzResourceBroker/AzResourceBroker.cs:line - 134\n at Microsoft.Azure.ContainerNetworking.DncRP.AzVNetBroker.GetOrCreateServiceAssociationLinkAsync(String + 129\n at Microsoft.Azure.ContainerNetworking.DncRP.AzVNetBroker.GetOrCreateServiceAssociationLinkAsync(String tenantId, String vnetResourceId, String subnetResourceId) in /usr/local/Networking-Aquarius/src/DncRP/Server/AzResourceBroker/AzVNetBroker.cs:line - 188.\n at Microsoft.Azure.ContainerNetworking.DncRP.AzVNetBroker.GetOrCreateServiceAssociationLinkAsync(String + 205.\n at Microsoft.Azure.ContainerNetworking.DncRP.AzVNetBroker.GetOrCreateServiceAssociationLinkAsync(String tenantId, String vnetResourceId, String subnetResourceId) in /usr/local/Networking-Aquarius/src/DncRP/Server/AzResourceBroker/AzVNetBroker.cs:line - 208\n at Microsoft.Azure.ContainerNetworking.DncRP.DelegateSubnetController.CreateSubnetTokenAsync(String + 225\n at Microsoft.Azure.ContainerNetworking.DncRP.DelegateSubnetController.CreateSubnetTokenAsync(String tenantId, String vnetName, String subnetName, String delegatedSubnetGuid, - String vnetResourceGuid, String subnetResourceId) in /usr/local/Networking-Aquarius/src/DncRP/Server/Controllers/DelegateSubnetController.cs:line - 392InternalErrorCode: ServiceAssociationLinkFailed. SAL creation failed:Microsoft.Azure.ContainerNetworking.DncRP.ErrorResponseMessageException: + String vnetResourceGuid, String subnetResourceId, Int32 allocationBlockPrefixSize) + in /usr/local/Networking-Aquarius/src/DncRP/Server/Controllers/DelegateSubnetController.cs:line + 427InternalErrorCode: ServiceAssociationLinkFailed. SAL creation failed:Microsoft.Azure.ContainerNetworking.DncRP.ErrorResponseMessageException: Failed to create SAL token, salRequest: ServiceAssociationLink: Id: , Name: Properties: ServiceAssociationLinkProperties: ProvisioningState: LinkedResourceType: - Microsoft.DelegatedNetwork/controller ParentResourceGuid: 7290cf68-2875-486a-a2c4-153fa6d445e6 + Microsoft.DelegatedNetwork/controller ParentResourceGuid: 6536a707-d2ce-4dd1-be86-f6574ffade8c Locations: centraluseuap Details: ServiceAssociationLinkDetail: Id: , Name: ManagedDNCDetail, Properties: ServiceAssociationLinkDetailProperties: ProvisioningState: - , PrimaryContextRequestId: a1650b48-deae-4795-9377-b66553b1d94b, SecondaryContextRequestId: - 6cf1d661-6e94-4afa-878d-cd2f53f54098,PrimaryContextId: SecondaryContextId: + , PrimaryContextRequestId: aae4b78c-35e2-40bd-880e-40f3b6fed4e4, SecondaryContextRequestId: + 71aaf74a-ed5b-457e-8820-263b393df3a5,PrimaryContextId: SecondaryContextId: , subnetResourceId:/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dnc000001/providers/Microsoft.Network/virtualNetworks/cli_test_dnc000002/subnets/default internal ex: System.Exception: ResponseMessage: System.Net.Http.HttpConnectionResponseContent, status code BadRequest, Reason: Bad Request, internal exception: System.Net.Http.HttpRequestException: @@ -132,41 +131,42 @@ interactions: /usr/local/Networking-Aquarius/src/DncRP/Server/AzResourceBroker/AzResourceBroker.cs:line 239\n at Microsoft.Azure.ContainerNetworking.DncRP.AzResourceBroker.PutResourceAsync[T](String tenantId, String resourceId, String apiVersion, T requestBody) in /usr/local/Networking-Aquarius/src/DncRP/Server/AzResourceBroker/AzResourceBroker.cs:line - 134\n at Microsoft.Azure.ContainerNetworking.DncRP.AzVNetBroker.GetOrCreateServiceAssociationLinkAsync(String + 129\n at Microsoft.Azure.ContainerNetworking.DncRP.AzVNetBroker.GetOrCreateServiceAssociationLinkAsync(String tenantId, String vnetResourceId, String subnetResourceId) in /usr/local/Networking-Aquarius/src/DncRP/Server/AzResourceBroker/AzVNetBroker.cs:line - 188.\n at Microsoft.Azure.ContainerNetworking.DncRP.AzVNetBroker.GetOrCreateServiceAssociationLinkAsync(String + 205.\n at Microsoft.Azure.ContainerNetworking.DncRP.AzVNetBroker.GetOrCreateServiceAssociationLinkAsync(String tenantId, String vnetResourceId, String subnetResourceId) in /usr/local/Networking-Aquarius/src/DncRP/Server/AzResourceBroker/AzVNetBroker.cs:line - 208\n at Microsoft.Azure.ContainerNetworking.DncRP.DelegateSubnetController.CreateSubnetTokenAsync(String + 225\n at Microsoft.Azure.ContainerNetworking.DncRP.DelegateSubnetController.CreateSubnetTokenAsync(String tenantId, String vnetName, String subnetName, String delegatedSubnetGuid, - String vnetResourceGuid, String subnetResourceId) in /usr/local/Networking-Aquarius/src/DncRP/Server/Controllers/DelegateSubnetController.cs:line - 392","details":null}}}' + String vnetResourceGuid, String subnetResourceId, Int32 allocationBlockPrefixSize) + in /usr/local/Networking-Aquarius/src/DncRP/Server/Controllers/DelegateSubnetController.cs:line + 427","details":null}}}' headers: cache-control: - no-cache - connection: - - close content-length: - - '6774' + - '6840' content-type: - application/json date: - - Fri, 28 Jul 2023 20:49:17 GMT + - Tue, 22 Aug 2023 22:35:32 GMT expires: - '-1' pragma: - no-cache request-context: - appId=cid-v1:82487bea-6925-46b8-a5c9-0bcae97f8f27 - server: - - Kestrel strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-failure-cause: - service x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: F5468BCC032C4AD98EF0BF5B609B9AB1 Ref B: CO6AA3150219029 Ref C: 2023-08-22T22:35:30Z' status: code: 500 message: Internal Server Error @@ -190,20 +190,20 @@ interactions: ParameterSetName: - --location --id --subnet-details-id --resource-group --resource-name User-Agent: - - AZURECLI/2.50.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.51.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dnc000001/providers/Microsoft.DelegatedNetwork/delegatedSubnets/delegated1?api-version=2023-05-18-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dnc000001/providers/Microsoft.DelegatedNetwork/delegatedSubnets/delegated1?api-version=2023-06-27-preview response: body: string: '{"ErrorResponse":{"error":{"code":"500","message":"Error in API: PutDelegateSubnetSAL creation failed:Microsoft.Azure.ContainerNetworking.DncRP.ErrorResponseMessageException: Failed to create SAL token, salRequest: ServiceAssociationLink: Id: , Name: Properties: ServiceAssociationLinkProperties: ProvisioningState: LinkedResourceType: - Microsoft.DelegatedNetwork/controller ParentResourceGuid: 7290cf68-2875-486a-a2c4-153fa6d445e6 + Microsoft.DelegatedNetwork/controller ParentResourceGuid: 6536a707-d2ce-4dd1-be86-f6574ffade8c Locations: centraluseuap Details: ServiceAssociationLinkDetail: Id: , Name: ManagedDNCDetail, Properties: ServiceAssociationLinkDetailProperties: ProvisioningState: - , PrimaryContextRequestId: fd748dad-b21c-4a4b-bc01-940f0b3c93c5, SecondaryContextRequestId: - fc549b33-e48b-4536-b3c5-334f6ecfb9e6,PrimaryContextId: SecondaryContextId: + , PrimaryContextRequestId: f7b2abe2-dfd9-4527-bb0d-3f31bb496387, SecondaryContextRequestId: + 9dd40d27-d863-4a23-9525-301cd9cd0f50,PrimaryContextId: SecondaryContextId: , subnetResourceId:/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dnc000001/providers/Microsoft.Network/virtualNetworks/cli_test_dnc000002/subnets/default internal ex: System.Exception: ResponseMessage: System.Net.Http.HttpConnectionResponseContent, status code BadRequest, Reason: Bad Request, internal exception: System.Net.Http.HttpRequestException: @@ -219,21 +219,22 @@ interactions: /usr/local/Networking-Aquarius/src/DncRP/Server/AzResourceBroker/AzResourceBroker.cs:line 239\n at Microsoft.Azure.ContainerNetworking.DncRP.AzResourceBroker.PutResourceAsync[T](String tenantId, String resourceId, String apiVersion, T requestBody) in /usr/local/Networking-Aquarius/src/DncRP/Server/AzResourceBroker/AzResourceBroker.cs:line - 134\n at Microsoft.Azure.ContainerNetworking.DncRP.AzVNetBroker.GetOrCreateServiceAssociationLinkAsync(String + 129\n at Microsoft.Azure.ContainerNetworking.DncRP.AzVNetBroker.GetOrCreateServiceAssociationLinkAsync(String tenantId, String vnetResourceId, String subnetResourceId) in /usr/local/Networking-Aquarius/src/DncRP/Server/AzResourceBroker/AzVNetBroker.cs:line - 188.\n at Microsoft.Azure.ContainerNetworking.DncRP.AzVNetBroker.GetOrCreateServiceAssociationLinkAsync(String + 231.\n at Microsoft.Azure.ContainerNetworking.DncRP.AzVNetBroker.GetOrCreateServiceAssociationLinkAsync(String tenantId, String vnetResourceId, String subnetResourceId) in /usr/local/Networking-Aquarius/src/DncRP/Server/AzResourceBroker/AzVNetBroker.cs:line - 208\n at Microsoft.Azure.ContainerNetworking.DncRP.DelegateSubnetController.CreateSubnetTokenAsync(String + 231\n at Microsoft.Azure.ContainerNetworking.DncRP.DelegateSubnetController.CreateSubnetTokenAsync(String tenantId, String vnetName, String subnetName, String delegatedSubnetGuid, - String vnetResourceGuid, String subnetResourceId) in /usr/local/Networking-Aquarius/src/DncRP/Server/Controllers/DelegateSubnetController.cs:line - 392InternalErrorCode: ServiceAssociationLinkFailed. SAL creation failed:Microsoft.Azure.ContainerNetworking.DncRP.ErrorResponseMessageException: + String vnetResourceGuid, String subnetResourceId, Int32 allocationBlockPrefixSize) + in /usr/local/Networking-Aquarius/src/DncRP/Server/Controllers/DelegateSubnetController.cs:line + 446InternalErrorCode: ServiceAssociationLinkFailed. SAL creation failed:Microsoft.Azure.ContainerNetworking.DncRP.ErrorResponseMessageException: Failed to create SAL token, salRequest: ServiceAssociationLink: Id: , Name: Properties: ServiceAssociationLinkProperties: ProvisioningState: LinkedResourceType: - Microsoft.DelegatedNetwork/controller ParentResourceGuid: 7290cf68-2875-486a-a2c4-153fa6d445e6 + Microsoft.DelegatedNetwork/controller ParentResourceGuid: 6536a707-d2ce-4dd1-be86-f6574ffade8c Locations: centraluseuap Details: ServiceAssociationLinkDetail: Id: , Name: ManagedDNCDetail, Properties: ServiceAssociationLinkDetailProperties: ProvisioningState: - , PrimaryContextRequestId: fd748dad-b21c-4a4b-bc01-940f0b3c93c5, SecondaryContextRequestId: - fc549b33-e48b-4536-b3c5-334f6ecfb9e6,PrimaryContextId: SecondaryContextId: + , PrimaryContextRequestId: f7b2abe2-dfd9-4527-bb0d-3f31bb496387, SecondaryContextRequestId: + 9dd40d27-d863-4a23-9525-301cd9cd0f50,PrimaryContextId: SecondaryContextId: , subnetResourceId:/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dnc000001/providers/Microsoft.Network/virtualNetworks/cli_test_dnc000002/subnets/default internal ex: System.Exception: ResponseMessage: System.Net.Http.HttpConnectionResponseContent, status code BadRequest, Reason: Bad Request, internal exception: System.Net.Http.HttpRequestException: @@ -249,41 +250,42 @@ interactions: /usr/local/Networking-Aquarius/src/DncRP/Server/AzResourceBroker/AzResourceBroker.cs:line 239\n at Microsoft.Azure.ContainerNetworking.DncRP.AzResourceBroker.PutResourceAsync[T](String tenantId, String resourceId, String apiVersion, T requestBody) in /usr/local/Networking-Aquarius/src/DncRP/Server/AzResourceBroker/AzResourceBroker.cs:line - 134\n at Microsoft.Azure.ContainerNetworking.DncRP.AzVNetBroker.GetOrCreateServiceAssociationLinkAsync(String + 129\n at Microsoft.Azure.ContainerNetworking.DncRP.AzVNetBroker.GetOrCreateServiceAssociationLinkAsync(String tenantId, String vnetResourceId, String subnetResourceId) in /usr/local/Networking-Aquarius/src/DncRP/Server/AzResourceBroker/AzVNetBroker.cs:line - 188.\n at Microsoft.Azure.ContainerNetworking.DncRP.AzVNetBroker.GetOrCreateServiceAssociationLinkAsync(String + 231.\n at Microsoft.Azure.ContainerNetworking.DncRP.AzVNetBroker.GetOrCreateServiceAssociationLinkAsync(String tenantId, String vnetResourceId, String subnetResourceId) in /usr/local/Networking-Aquarius/src/DncRP/Server/AzResourceBroker/AzVNetBroker.cs:line - 208\n at Microsoft.Azure.ContainerNetworking.DncRP.DelegateSubnetController.CreateSubnetTokenAsync(String + 231\n at Microsoft.Azure.ContainerNetworking.DncRP.DelegateSubnetController.CreateSubnetTokenAsync(String tenantId, String vnetName, String subnetName, String delegatedSubnetGuid, - String vnetResourceGuid, String subnetResourceId) in /usr/local/Networking-Aquarius/src/DncRP/Server/Controllers/DelegateSubnetController.cs:line - 392","details":null}}}' + String vnetResourceGuid, String subnetResourceId, Int32 allocationBlockPrefixSize) + in /usr/local/Networking-Aquarius/src/DncRP/Server/Controllers/DelegateSubnetController.cs:line + 446","details":null}}}' headers: cache-control: - no-cache - connection: - - close content-length: - - '6774' + - '6840' content-type: - application/json date: - - Fri, 28 Jul 2023 20:49:17 GMT + - Tue, 22 Aug 2023 22:35:33 GMT expires: - '-1' pragma: - no-cache request-context: - appId=cid-v1:82487bea-6925-46b8-a5c9-0bcae97f8f27 - server: - - Kestrel strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-failure-cause: - service x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: 3547021272B24C818F352520D63B5BF1 Ref B: CO6AA3150219029 Ref C: 2023-08-22T22:35:32Z' status: code: 500 message: Internal Server Error @@ -307,20 +309,20 @@ interactions: ParameterSetName: - --location --id --subnet-details-id --resource-group --resource-name User-Agent: - - AZURECLI/2.50.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.51.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dnc000001/providers/Microsoft.DelegatedNetwork/delegatedSubnets/delegated1?api-version=2023-05-18-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dnc000001/providers/Microsoft.DelegatedNetwork/delegatedSubnets/delegated1?api-version=2023-06-27-preview response: body: string: '{"ErrorResponse":{"error":{"code":"500","message":"Error in API: PutDelegateSubnetSAL creation failed:Microsoft.Azure.ContainerNetworking.DncRP.ErrorResponseMessageException: Failed to create SAL token, salRequest: ServiceAssociationLink: Id: , Name: Properties: ServiceAssociationLinkProperties: ProvisioningState: LinkedResourceType: - Microsoft.DelegatedNetwork/controller ParentResourceGuid: 7290cf68-2875-486a-a2c4-153fa6d445e6 + Microsoft.DelegatedNetwork/controller ParentResourceGuid: 6536a707-d2ce-4dd1-be86-f6574ffade8c Locations: centraluseuap Details: ServiceAssociationLinkDetail: Id: , Name: ManagedDNCDetail, Properties: ServiceAssociationLinkDetailProperties: ProvisioningState: - , PrimaryContextRequestId: b758037b-84c7-444d-bba1-f384e0f3b805, SecondaryContextRequestId: - 84efa3d0-14ed-4cd1-bf2e-faf561e44671,PrimaryContextId: SecondaryContextId: + , PrimaryContextRequestId: a6ddb684-0d9b-4e2c-8921-d1b6ff16b57f, SecondaryContextRequestId: + a8d56eff-b97a-4f3c-a08f-caaafeadf322,PrimaryContextId: SecondaryContextId: , subnetResourceId:/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dnc000001/providers/Microsoft.Network/virtualNetworks/cli_test_dnc000002/subnets/default internal ex: System.Exception: ResponseMessage: System.Net.Http.HttpConnectionResponseContent, status code BadRequest, Reason: Bad Request, internal exception: System.Net.Http.HttpRequestException: @@ -338,19 +340,20 @@ interactions: tenantId, String resourceId, String apiVersion, T requestBody) in /usr/local/Networking-Aquarius/src/DncRP/Server/AzResourceBroker/AzResourceBroker.cs:line 134\n at Microsoft.Azure.ContainerNetworking.DncRP.AzVNetBroker.GetOrCreateServiceAssociationLinkAsync(String tenantId, String vnetResourceId, String subnetResourceId) in /usr/local/Networking-Aquarius/src/DncRP/Server/AzResourceBroker/AzVNetBroker.cs:line - 188.\n at Microsoft.Azure.ContainerNetworking.DncRP.AzVNetBroker.GetOrCreateServiceAssociationLinkAsync(String + 231.\n at Microsoft.Azure.ContainerNetworking.DncRP.AzVNetBroker.GetOrCreateServiceAssociationLinkAsync(String tenantId, String vnetResourceId, String subnetResourceId) in /usr/local/Networking-Aquarius/src/DncRP/Server/AzResourceBroker/AzVNetBroker.cs:line - 208\n at Microsoft.Azure.ContainerNetworking.DncRP.DelegateSubnetController.CreateSubnetTokenAsync(String + 231\n at Microsoft.Azure.ContainerNetworking.DncRP.DelegateSubnetController.CreateSubnetTokenAsync(String tenantId, String vnetName, String subnetName, String delegatedSubnetGuid, - String vnetResourceGuid, String subnetResourceId) in /usr/local/Networking-Aquarius/src/DncRP/Server/Controllers/DelegateSubnetController.cs:line - 410InternalErrorCode: ServiceAssociationLinkFailed. SAL creation failed:Microsoft.Azure.ContainerNetworking.DncRP.ErrorResponseMessageException: + String vnetResourceGuid, String subnetResourceId, Int32 allocationBlockPrefixSize) + in /usr/local/Networking-Aquarius/src/DncRP/Server/Controllers/DelegateSubnetController.cs:line + 446InternalErrorCode: ServiceAssociationLinkFailed. SAL creation failed:Microsoft.Azure.ContainerNetworking.DncRP.ErrorResponseMessageException: Failed to create SAL token, salRequest: ServiceAssociationLink: Id: , Name: Properties: ServiceAssociationLinkProperties: ProvisioningState: LinkedResourceType: - Microsoft.DelegatedNetwork/controller ParentResourceGuid: 7290cf68-2875-486a-a2c4-153fa6d445e6 + Microsoft.DelegatedNetwork/controller ParentResourceGuid: 6536a707-d2ce-4dd1-be86-f6574ffade8c Locations: centraluseuap Details: ServiceAssociationLinkDetail: Id: , Name: ManagedDNCDetail, Properties: ServiceAssociationLinkDetailProperties: ProvisioningState: - , PrimaryContextRequestId: b758037b-84c7-444d-bba1-f384e0f3b805, SecondaryContextRequestId: - 84efa3d0-14ed-4cd1-bf2e-faf561e44671,PrimaryContextId: SecondaryContextId: + , PrimaryContextRequestId: a6ddb684-0d9b-4e2c-8921-d1b6ff16b57f, SecondaryContextRequestId: + a8d56eff-b97a-4f3c-a08f-caaafeadf322,PrimaryContextId: SecondaryContextId: , subnetResourceId:/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dnc000001/providers/Microsoft.Network/virtualNetworks/cli_test_dnc000002/subnets/default internal ex: System.Exception: ResponseMessage: System.Net.Http.HttpConnectionResponseContent, status code BadRequest, Reason: Bad Request, internal exception: System.Net.Http.HttpRequestException: @@ -368,39 +371,40 @@ interactions: tenantId, String resourceId, String apiVersion, T requestBody) in /usr/local/Networking-Aquarius/src/DncRP/Server/AzResourceBroker/AzResourceBroker.cs:line 134\n at Microsoft.Azure.ContainerNetworking.DncRP.AzVNetBroker.GetOrCreateServiceAssociationLinkAsync(String tenantId, String vnetResourceId, String subnetResourceId) in /usr/local/Networking-Aquarius/src/DncRP/Server/AzResourceBroker/AzVNetBroker.cs:line - 188.\n at Microsoft.Azure.ContainerNetworking.DncRP.AzVNetBroker.GetOrCreateServiceAssociationLinkAsync(String + 231.\n at Microsoft.Azure.ContainerNetworking.DncRP.AzVNetBroker.GetOrCreateServiceAssociationLinkAsync(String tenantId, String vnetResourceId, String subnetResourceId) in /usr/local/Networking-Aquarius/src/DncRP/Server/AzResourceBroker/AzVNetBroker.cs:line - 208\n at Microsoft.Azure.ContainerNetworking.DncRP.DelegateSubnetController.CreateSubnetTokenAsync(String + 231\n at Microsoft.Azure.ContainerNetworking.DncRP.DelegateSubnetController.CreateSubnetTokenAsync(String tenantId, String vnetName, String subnetName, String delegatedSubnetGuid, - String vnetResourceGuid, String subnetResourceId) in /usr/local/Networking-Aquarius/src/DncRP/Server/Controllers/DelegateSubnetController.cs:line - 410","details":null}}}' + String vnetResourceGuid, String subnetResourceId, Int32 allocationBlockPrefixSize) + in /usr/local/Networking-Aquarius/src/DncRP/Server/Controllers/DelegateSubnetController.cs:line + 446","details":null}}}' headers: cache-control: - no-cache - connection: - - close content-length: - - '6774' + - '6840' content-type: - application/json date: - - Fri, 28 Jul 2023 20:49:21 GMT + - Tue, 22 Aug 2023 22:35:36 GMT expires: - '-1' pragma: - no-cache request-context: - appId=cid-v1:82487bea-6925-46b8-a5c9-0bcae97f8f27 - server: - - Kestrel strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-failure-cause: - service x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: C98FE4B3F2BA4739B27F200A54AEA175 Ref B: CO6AA3150219029 Ref C: 2023-08-22T22:35:35Z' status: code: 500 message: Internal Server Error @@ -424,20 +428,20 @@ interactions: ParameterSetName: - --location --id --subnet-details-id --resource-group --resource-name User-Agent: - - AZURECLI/2.50.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.51.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dnc000001/providers/Microsoft.DelegatedNetwork/delegatedSubnets/delegated1?api-version=2023-05-18-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dnc000001/providers/Microsoft.DelegatedNetwork/delegatedSubnets/delegated1?api-version=2023-06-27-preview response: body: string: '{"ErrorResponse":{"error":{"code":"500","message":"Error in API: PutDelegateSubnetSAL creation failed:Microsoft.Azure.ContainerNetworking.DncRP.ErrorResponseMessageException: Failed to create SAL token, salRequest: ServiceAssociationLink: Id: , Name: Properties: ServiceAssociationLinkProperties: ProvisioningState: LinkedResourceType: - Microsoft.DelegatedNetwork/controller ParentResourceGuid: 7290cf68-2875-486a-a2c4-153fa6d445e6 + Microsoft.DelegatedNetwork/controller ParentResourceGuid: 6536a707-d2ce-4dd1-be86-f6574ffade8c Locations: centraluseuap Details: ServiceAssociationLinkDetail: Id: , Name: ManagedDNCDetail, Properties: ServiceAssociationLinkDetailProperties: ProvisioningState: - , PrimaryContextRequestId: 074e360e-20d4-42d3-b151-f614ca62957d, SecondaryContextRequestId: - 25eba8b0-1ecd-4646-9700-11522036dcfb,PrimaryContextId: SecondaryContextId: + , PrimaryContextRequestId: a0476a2c-63f0-4321-a5c6-c34009d764a7, SecondaryContextRequestId: + b707f0c0-742e-494d-9025-8f1beb274775,PrimaryContextId: SecondaryContextId: , subnetResourceId:/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dnc000001/providers/Microsoft.Network/virtualNetworks/cli_test_dnc000002/subnets/default internal ex: System.Exception: ResponseMessage: System.Net.Http.HttpConnectionResponseContent, status code BadRequest, Reason: Bad Request, internal exception: System.Net.Http.HttpRequestException: @@ -455,19 +459,20 @@ interactions: tenantId, String resourceId, String apiVersion, T requestBody) in /usr/local/Networking-Aquarius/src/DncRP/Server/AzResourceBroker/AzResourceBroker.cs:line 134\n at Microsoft.Azure.ContainerNetworking.DncRP.AzVNetBroker.GetOrCreateServiceAssociationLinkAsync(String tenantId, String vnetResourceId, String subnetResourceId) in /usr/local/Networking-Aquarius/src/DncRP/Server/AzResourceBroker/AzVNetBroker.cs:line - 214.\n at Microsoft.Azure.ContainerNetworking.DncRP.AzVNetBroker.GetOrCreateServiceAssociationLinkAsync(String + 231.\n at Microsoft.Azure.ContainerNetworking.DncRP.AzVNetBroker.GetOrCreateServiceAssociationLinkAsync(String tenantId, String vnetResourceId, String subnetResourceId) in /usr/local/Networking-Aquarius/src/DncRP/Server/AzResourceBroker/AzVNetBroker.cs:line - 214\n at Microsoft.Azure.ContainerNetworking.DncRP.DelegateSubnetController.CreateSubnetTokenAsync(String + 231\n at Microsoft.Azure.ContainerNetworking.DncRP.DelegateSubnetController.CreateSubnetTokenAsync(String tenantId, String vnetName, String subnetName, String delegatedSubnetGuid, - String vnetResourceGuid, String subnetResourceId) in /usr/local/Networking-Aquarius/src/DncRP/Server/Controllers/DelegateSubnetController.cs:line - 410InternalErrorCode: ServiceAssociationLinkFailed. SAL creation failed:Microsoft.Azure.ContainerNetworking.DncRP.ErrorResponseMessageException: + String vnetResourceGuid, String subnetResourceId, Int32 allocationBlockPrefixSize) + in /usr/local/Networking-Aquarius/src/DncRP/Server/Controllers/DelegateSubnetController.cs:line + 446InternalErrorCode: ServiceAssociationLinkFailed. SAL creation failed:Microsoft.Azure.ContainerNetworking.DncRP.ErrorResponseMessageException: Failed to create SAL token, salRequest: ServiceAssociationLink: Id: , Name: Properties: ServiceAssociationLinkProperties: ProvisioningState: LinkedResourceType: - Microsoft.DelegatedNetwork/controller ParentResourceGuid: 7290cf68-2875-486a-a2c4-153fa6d445e6 + Microsoft.DelegatedNetwork/controller ParentResourceGuid: 6536a707-d2ce-4dd1-be86-f6574ffade8c Locations: centraluseuap Details: ServiceAssociationLinkDetail: Id: , Name: ManagedDNCDetail, Properties: ServiceAssociationLinkDetailProperties: ProvisioningState: - , PrimaryContextRequestId: 074e360e-20d4-42d3-b151-f614ca62957d, SecondaryContextRequestId: - 25eba8b0-1ecd-4646-9700-11522036dcfb,PrimaryContextId: SecondaryContextId: + , PrimaryContextRequestId: a0476a2c-63f0-4321-a5c6-c34009d764a7, SecondaryContextRequestId: + b707f0c0-742e-494d-9025-8f1beb274775,PrimaryContextId: SecondaryContextId: , subnetResourceId:/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dnc000001/providers/Microsoft.Network/virtualNetworks/cli_test_dnc000002/subnets/default internal ex: System.Exception: ResponseMessage: System.Net.Http.HttpConnectionResponseContent, status code BadRequest, Reason: Bad Request, internal exception: System.Net.Http.HttpRequestException: @@ -485,39 +490,40 @@ interactions: tenantId, String resourceId, String apiVersion, T requestBody) in /usr/local/Networking-Aquarius/src/DncRP/Server/AzResourceBroker/AzResourceBroker.cs:line 134\n at Microsoft.Azure.ContainerNetworking.DncRP.AzVNetBroker.GetOrCreateServiceAssociationLinkAsync(String tenantId, String vnetResourceId, String subnetResourceId) in /usr/local/Networking-Aquarius/src/DncRP/Server/AzResourceBroker/AzVNetBroker.cs:line - 214.\n at Microsoft.Azure.ContainerNetworking.DncRP.AzVNetBroker.GetOrCreateServiceAssociationLinkAsync(String + 231.\n at Microsoft.Azure.ContainerNetworking.DncRP.AzVNetBroker.GetOrCreateServiceAssociationLinkAsync(String tenantId, String vnetResourceId, String subnetResourceId) in /usr/local/Networking-Aquarius/src/DncRP/Server/AzResourceBroker/AzVNetBroker.cs:line - 214\n at Microsoft.Azure.ContainerNetworking.DncRP.DelegateSubnetController.CreateSubnetTokenAsync(String + 231\n at Microsoft.Azure.ContainerNetworking.DncRP.DelegateSubnetController.CreateSubnetTokenAsync(String tenantId, String vnetName, String subnetName, String delegatedSubnetGuid, - String vnetResourceGuid, String subnetResourceId) in /usr/local/Networking-Aquarius/src/DncRP/Server/Controllers/DelegateSubnetController.cs:line - 410","details":null}}}' + String vnetResourceGuid, String subnetResourceId, Int32 allocationBlockPrefixSize) + in /usr/local/Networking-Aquarius/src/DncRP/Server/Controllers/DelegateSubnetController.cs:line + 446","details":null}}}' headers: cache-control: - no-cache - connection: - - close content-length: - - '6774' + - '6840' content-type: - application/json date: - - Fri, 28 Jul 2023 20:49:25 GMT + - Tue, 22 Aug 2023 22:35:40 GMT expires: - '-1' pragma: - no-cache request-context: - appId=cid-v1:82487bea-6925-46b8-a5c9-0bcae97f8f27 - server: - - Kestrel strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-failure-cause: - service x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: 2A7864FAA1B04829B4EDEE0DFA22866C Ref B: CO6AA3150219029 Ref C: 2023-08-22T22:35:39Z' status: code: 500 message: Internal Server Error diff --git a/src/dnc/azext_dnc/tests/latest/recordings/test_dnc_delegated_subnet_service_delete.yaml b/src/dnc/azext_dnc/tests/latest/recordings/test_dnc_delegated_subnet_service_delete.yaml index fc310d7f61c..4d8b51872bb 100644 --- a/src/dnc/azext_dnc/tests/latest/recordings/test_dnc_delegated_subnet_service_delete.yaml +++ b/src/dnc/azext_dnc/tests/latest/recordings/test_dnc_delegated_subnet_service_delete.yaml @@ -15,9 +15,9 @@ interactions: ParameterSetName: - --resource-name --resource-group --yes User-Agent: - - AZURECLI/2.50.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.51.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dnc000001/providers/Microsoft.DelegatedNetwork/delegatedSubnets/delegated1?api-version=2023-05-18-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dnc000001/providers/Microsoft.DelegatedNetwork/delegatedSubnets/delegated1?api-version=2023-06-27-preview response: body: string: '' @@ -25,17 +25,21 @@ interactions: cache-control: - no-cache date: - - Fri, 28 Jul 2023 20:49:01 GMT + - Tue, 22 Aug 2023 22:35:15 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - '14999' + x-msedge-ref: + - 'Ref A: B316160AF9F1433C83DD2EF397B43446 Ref B: CO6AA3150220011 Ref C: 2023-08-22T22:35:15Z' status: code: 204 message: No Content diff --git a/src/dnc/azext_dnc/tests/latest/recordings/test_dnc_delegated_subnet_service_show.yaml b/src/dnc/azext_dnc/tests/latest/recordings/test_dnc_delegated_subnet_service_show.yaml index 405f291684a..2e096a91eb6 100644 --- a/src/dnc/azext_dnc/tests/latest/recordings/test_dnc_delegated_subnet_service_show.yaml +++ b/src/dnc/azext_dnc/tests/latest/recordings/test_dnc_delegated_subnet_service_show.yaml @@ -13,9 +13,9 @@ interactions: ParameterSetName: - --resource-name --resource-group User-Agent: - - AZURECLI/2.50.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.51.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dnc000001/providers/Microsoft.DelegatedNetwork/delegatedSubnets/delegated1?api-version=2023-05-18-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dnc000001/providers/Microsoft.DelegatedNetwork/delegatedSubnets/delegated1?api-version=2023-06-27-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.DelegatedNetwork/delegatedSubnets/delegated1'' @@ -29,17 +29,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jul 2023 20:49:01 GMT + - Tue, 22 Aug 2023 22:35:15 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-failure-cause: - gateway + x-msedge-ref: + - 'Ref A: 2239E20AA917454991BC9DF4968ECAED Ref B: CO6AA3150219049 Ref C: 2023-08-22T22:35:16Z' status: code: 404 message: Not Found diff --git a/src/dnc/azext_dnc/tests/latest/recordings/test_dnc_orchestrator_instance_service_create.yaml b/src/dnc/azext_dnc/tests/latest/recordings/test_dnc_orchestrator_instance_service_create.yaml index 402d6b251d8..97949b5a807 100644 --- a/src/dnc/azext_dnc/tests/latest/recordings/test_dnc_orchestrator_instance_service_create.yaml +++ b/src/dnc/azext_dnc/tests/latest/recordings/test_dnc_orchestrator_instance_service_create.yaml @@ -17,7 +17,7 @@ interactions: ParameterSetName: - --location --resource-name --resource-group User-Agent: - - AZURECLI/2.50.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.51.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dnc000001/providers/Microsoft.DelegatedNetwork/controller/clitestcontroller?api-version=2023-05-18-preview response: @@ -31,25 +31,23 @@ interactions: content-type: - application/json date: - - Fri, 28 Jul 2023 20:49:01 GMT + - Tue, 22 Aug 2023 22:35:16 GMT expires: - '-1' pragma: - no-cache request-context: - appId=cid-v1:82487bea-6925-46b8-a5c9-0bcae97f8f27 - server: - - Kestrel strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: 325BB627791B4F829F1CA9BC37C01E54 Ref B: CO6AA3150219037 Ref C: 2023-08-22T22:35:16Z' status: code: 200 message: OK @@ -76,16 +74,16 @@ interactions: - --type --location --api-server-endpoint --cluster-root-ca --id --orchestrator-app-id --orchestrator-tenant-id --priv-link-resource-id --resource-group --resource-name User-Agent: - - AZURECLI/2.50.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.51.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dnc000001/providers/Microsoft.DelegatedNetwork/orchestrators/testk8s1?api-version=2023-05-18-preview response: body: string: '{"ErrorResponse":{"error":{"code":"500","message":"Error in API: PutOrchestratorPrivate endpoint creation failed: System.Exception: ResponseMessage: System.Net.Http.HttpConnectionResponseContent, - status code BadRequest, Reason: Bad Request, internal exception: System.Net.Http.HttpRequestException: - Response status code does not indicate success: 400 (Bad Request).\n at - System.Net.Http.HttpResponseMessage.EnsureSuccessStatusCode()\n at Microsoft.Azure.ContainerNetworking.CoreLib.HttpUtility.ParseHttpResponse[T](HttpResponseMessage + status code BadRequest, Reason: , internal exception: System.Net.Http.HttpRequestException: + Response status code does not indicate success: 400 ().\n at System.Net.Http.HttpResponseMessage.EnsureSuccessStatusCode()\n at + Microsoft.Azure.ContainerNetworking.CoreLib.HttpUtility.ParseHttpResponse[T](HttpResponseMessage httpResponse, JsonSerializerSettings deserializeSettings) in /usr/local/Networking-Aquarius/src/Common/CoreLib/HttpUtility.cs:line 142\n at Microsoft.Azure.ContainerNetworking.CoreLib.HttpUtility.ParseHttpResponse[T](HttpResponseMessage httpResponse, JsonSerializerSettings deserializeSettings) in /usr/local/Networking-Aquarius/src/Common/CoreLib/HttpUtility.cs:line @@ -96,15 +94,15 @@ interactions: /usr/local/Networking-Aquarius/src/DncRP/Server/AzResourceBroker/AzResourceBroker.cs:line 239\n at Microsoft.Azure.ContainerNetworking.DncRP.AzResourceBroker.PutResourceAsync[T](String tenantId, String resourceId, String apiVersion, T requestBody) in /usr/local/Networking-Aquarius/src/DncRP/Server/AzResourceBroker/AzResourceBroker.cs:line - 134\n at Microsoft.Azure.ContainerNetworking.DncRP.AzVNetBroker.GetOrCreatePrivateEndpoint(String + 129\n at Microsoft.Azure.ContainerNetworking.DncRP.AzVNetBroker.GetOrCreatePrivateEndpoint(String privateLinkResourceId, String privateEndpointName) in /usr/local/Networking-Aquarius/src/DncRP/Server/AzResourceBroker/AzVNetBroker.cs:line - 333\n at Microsoft.Azure.ContainerNetworking.DncRP.OrchestratorController.ExecutePutOrchestratorAsync(String + 350\n at Microsoft.Azure.ContainerNetworking.DncRP.OrchestratorController.ExecutePutOrchestratorAsync(String subscriptionId, String resourceGroupName, String resourceName) in /usr/local/Networking-Aquarius/src/DncRP/Server/Controllers/OrchestratorController.cs:line 154InternalErrorCode: PrivateEndpointCreateFailed. Private endpoint creation failed: System.Exception: ResponseMessage: System.Net.Http.HttpConnectionResponseContent, - status code BadRequest, Reason: Bad Request, internal exception: System.Net.Http.HttpRequestException: - Response status code does not indicate success: 400 (Bad Request).\n at - System.Net.Http.HttpResponseMessage.EnsureSuccessStatusCode()\n at Microsoft.Azure.ContainerNetworking.CoreLib.HttpUtility.ParseHttpResponse[T](HttpResponseMessage + status code BadRequest, Reason: , internal exception: System.Net.Http.HttpRequestException: + Response status code does not indicate success: 400 ().\n at System.Net.Http.HttpResponseMessage.EnsureSuccessStatusCode()\n at + Microsoft.Azure.ContainerNetworking.CoreLib.HttpUtility.ParseHttpResponse[T](HttpResponseMessage httpResponse, JsonSerializerSettings deserializeSettings) in /usr/local/Networking-Aquarius/src/Common/CoreLib/HttpUtility.cs:line 142\n at Microsoft.Azure.ContainerNetworking.CoreLib.HttpUtility.ParseHttpResponse[T](HttpResponseMessage httpResponse, JsonSerializerSettings deserializeSettings) in /usr/local/Networking-Aquarius/src/Common/CoreLib/HttpUtility.cs:line @@ -115,38 +113,38 @@ interactions: /usr/local/Networking-Aquarius/src/DncRP/Server/AzResourceBroker/AzResourceBroker.cs:line 239\n at Microsoft.Azure.ContainerNetworking.DncRP.AzResourceBroker.PutResourceAsync[T](String tenantId, String resourceId, String apiVersion, T requestBody) in /usr/local/Networking-Aquarius/src/DncRP/Server/AzResourceBroker/AzResourceBroker.cs:line - 134\n at Microsoft.Azure.ContainerNetworking.DncRP.AzVNetBroker.GetOrCreatePrivateEndpoint(String + 129\n at Microsoft.Azure.ContainerNetworking.DncRP.AzVNetBroker.GetOrCreatePrivateEndpoint(String privateLinkResourceId, String privateEndpointName) in /usr/local/Networking-Aquarius/src/DncRP/Server/AzResourceBroker/AzVNetBroker.cs:line - 333\n at Microsoft.Azure.ContainerNetworking.DncRP.OrchestratorController.ExecutePutOrchestratorAsync(String + 350\n at Microsoft.Azure.ContainerNetworking.DncRP.OrchestratorController.ExecutePutOrchestratorAsync(String subscriptionId, String resourceGroupName, String resourceName) in /usr/local/Networking-Aquarius/src/DncRP/Server/Controllers/OrchestratorController.cs:line 154","details":null}}}' headers: cache-control: - no-cache - connection: - - close content-length: - - '4395' + - '4351' content-type: - application/json date: - - Fri, 28 Jul 2023 20:49:05 GMT + - Tue, 22 Aug 2023 22:35:19 GMT expires: - '-1' pragma: - no-cache request-context: - appId=cid-v1:82487bea-6925-46b8-a5c9-0bcae97f8f27 - server: - - Kestrel strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-failure-cause: - service x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: 9E607859262E4FBD852B8637141E30D8 Ref B: CO6AA3150217025 Ref C: 2023-08-22T22:35:17Z' status: code: 500 message: Internal Server Error @@ -173,16 +171,16 @@ interactions: - --type --location --api-server-endpoint --cluster-root-ca --id --orchestrator-app-id --orchestrator-tenant-id --priv-link-resource-id --resource-group --resource-name User-Agent: - - AZURECLI/2.50.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.51.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dnc000001/providers/Microsoft.DelegatedNetwork/orchestrators/testk8s1?api-version=2023-05-18-preview response: body: string: '{"ErrorResponse":{"error":{"code":"500","message":"Error in API: PutOrchestratorPrivate endpoint creation failed: System.Exception: ResponseMessage: System.Net.Http.HttpConnectionResponseContent, - status code BadRequest, Reason: Bad Request, internal exception: System.Net.Http.HttpRequestException: - Response status code does not indicate success: 400 (Bad Request).\n at - System.Net.Http.HttpResponseMessage.EnsureSuccessStatusCode()\n at Microsoft.Azure.ContainerNetworking.CoreLib.HttpUtility.ParseHttpResponse[T](HttpResponseMessage + status code BadRequest, Reason: , internal exception: System.Net.Http.HttpRequestException: + Response status code does not indicate success: 400 ().\n at System.Net.Http.HttpResponseMessage.EnsureSuccessStatusCode()\n at + Microsoft.Azure.ContainerNetworking.CoreLib.HttpUtility.ParseHttpResponse[T](HttpResponseMessage httpResponse, JsonSerializerSettings deserializeSettings) in /usr/local/Networking-Aquarius/src/Common/CoreLib/HttpUtility.cs:line 142\n at Microsoft.Azure.ContainerNetworking.CoreLib.HttpUtility.ParseHttpResponse[T](HttpResponseMessage httpResponse, JsonSerializerSettings deserializeSettings) in /usr/local/Networking-Aquarius/src/Common/CoreLib/HttpUtility.cs:line @@ -193,15 +191,15 @@ interactions: /usr/local/Networking-Aquarius/src/DncRP/Server/AzResourceBroker/AzResourceBroker.cs:line 239\n at Microsoft.Azure.ContainerNetworking.DncRP.AzResourceBroker.PutResourceAsync[T](String tenantId, String resourceId, String apiVersion, T requestBody) in /usr/local/Networking-Aquarius/src/DncRP/Server/AzResourceBroker/AzResourceBroker.cs:line - 134\n at Microsoft.Azure.ContainerNetworking.DncRP.AzVNetBroker.GetOrCreatePrivateEndpoint(String + 129\n at Microsoft.Azure.ContainerNetworking.DncRP.AzVNetBroker.GetOrCreatePrivateEndpoint(String privateLinkResourceId, String privateEndpointName) in /usr/local/Networking-Aquarius/src/DncRP/Server/AzResourceBroker/AzVNetBroker.cs:line - 333\n at Microsoft.Azure.ContainerNetworking.DncRP.OrchestratorController.ExecutePutOrchestratorAsync(String + 350\n at Microsoft.Azure.ContainerNetworking.DncRP.OrchestratorController.ExecutePutOrchestratorAsync(String subscriptionId, String resourceGroupName, String resourceName) in /usr/local/Networking-Aquarius/src/DncRP/Server/Controllers/OrchestratorController.cs:line - 207InternalErrorCode: PrivateEndpointCreateFailed. Private endpoint creation + 154InternalErrorCode: PrivateEndpointCreateFailed. Private endpoint creation failed: System.Exception: ResponseMessage: System.Net.Http.HttpConnectionResponseContent, - status code BadRequest, Reason: Bad Request, internal exception: System.Net.Http.HttpRequestException: - Response status code does not indicate success: 400 (Bad Request).\n at - System.Net.Http.HttpResponseMessage.EnsureSuccessStatusCode()\n at Microsoft.Azure.ContainerNetworking.CoreLib.HttpUtility.ParseHttpResponse[T](HttpResponseMessage + status code BadRequest, Reason: , internal exception: System.Net.Http.HttpRequestException: + Response status code does not indicate success: 400 ().\n at System.Net.Http.HttpResponseMessage.EnsureSuccessStatusCode()\n at + Microsoft.Azure.ContainerNetworking.CoreLib.HttpUtility.ParseHttpResponse[T](HttpResponseMessage httpResponse, JsonSerializerSettings deserializeSettings) in /usr/local/Networking-Aquarius/src/Common/CoreLib/HttpUtility.cs:line 142\n at Microsoft.Azure.ContainerNetworking.CoreLib.HttpUtility.ParseHttpResponse[T](HttpResponseMessage httpResponse, JsonSerializerSettings deserializeSettings) in /usr/local/Networking-Aquarius/src/Common/CoreLib/HttpUtility.cs:line @@ -212,38 +210,38 @@ interactions: /usr/local/Networking-Aquarius/src/DncRP/Server/AzResourceBroker/AzResourceBroker.cs:line 239\n at Microsoft.Azure.ContainerNetworking.DncRP.AzResourceBroker.PutResourceAsync[T](String tenantId, String resourceId, String apiVersion, T requestBody) in /usr/local/Networking-Aquarius/src/DncRP/Server/AzResourceBroker/AzResourceBroker.cs:line - 134\n at Microsoft.Azure.ContainerNetworking.DncRP.AzVNetBroker.GetOrCreatePrivateEndpoint(String + 129\n at Microsoft.Azure.ContainerNetworking.DncRP.AzVNetBroker.GetOrCreatePrivateEndpoint(String privateLinkResourceId, String privateEndpointName) in /usr/local/Networking-Aquarius/src/DncRP/Server/AzResourceBroker/AzVNetBroker.cs:line - 333\n at Microsoft.Azure.ContainerNetworking.DncRP.OrchestratorController.ExecutePutOrchestratorAsync(String + 350\n at Microsoft.Azure.ContainerNetworking.DncRP.OrchestratorController.ExecutePutOrchestratorAsync(String subscriptionId, String resourceGroupName, String resourceName) in /usr/local/Networking-Aquarius/src/DncRP/Server/Controllers/OrchestratorController.cs:line - 207","details":null}}}' + 154","details":null}}}' headers: cache-control: - no-cache - connection: - - close content-length: - - '4395' + - '4351' content-type: - application/json date: - - Fri, 28 Jul 2023 20:49:06 GMT + - Tue, 22 Aug 2023 22:35:20 GMT expires: - '-1' pragma: - no-cache request-context: - appId=cid-v1:82487bea-6925-46b8-a5c9-0bcae97f8f27 - server: - - Kestrel strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-failure-cause: - service x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: 8AEA3959E1754D54A7B14CDD91C1AF64 Ref B: CO6AA3150217025 Ref C: 2023-08-22T22:35:20Z' status: code: 500 message: Internal Server Error @@ -270,16 +268,16 @@ interactions: - --type --location --api-server-endpoint --cluster-root-ca --id --orchestrator-app-id --orchestrator-tenant-id --priv-link-resource-id --resource-group --resource-name User-Agent: - - AZURECLI/2.50.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.51.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dnc000001/providers/Microsoft.DelegatedNetwork/orchestrators/testk8s1?api-version=2023-05-18-preview response: body: string: '{"ErrorResponse":{"error":{"code":"500","message":"Error in API: PutOrchestratorPrivate endpoint creation failed: System.Exception: ResponseMessage: System.Net.Http.HttpConnectionResponseContent, - status code BadRequest, Reason: Bad Request, internal exception: System.Net.Http.HttpRequestException: - Response status code does not indicate success: 400 (Bad Request).\n at - System.Net.Http.HttpResponseMessage.EnsureSuccessStatusCode()\n at Microsoft.Azure.ContainerNetworking.CoreLib.HttpUtility.ParseHttpResponse[T](HttpResponseMessage + status code BadRequest, Reason: , internal exception: System.Net.Http.HttpRequestException: + Response status code does not indicate success: 400 ().\n at System.Net.Http.HttpResponseMessage.EnsureSuccessStatusCode()\n at + Microsoft.Azure.ContainerNetworking.CoreLib.HttpUtility.ParseHttpResponse[T](HttpResponseMessage httpResponse, JsonSerializerSettings deserializeSettings) in /usr/local/Networking-Aquarius/src/Common/CoreLib/HttpUtility.cs:line 142\n at Microsoft.Azure.ContainerNetworking.CoreLib.HttpUtility.ParseHttpResponse[T](HttpResponseMessage httpResponse, JsonSerializerSettings deserializeSettings) in /usr/local/Networking-Aquarius/src/Common/CoreLib/HttpUtility.cs:line @@ -290,15 +288,15 @@ interactions: /usr/local/Networking-Aquarius/src/DncRP/Server/AzResourceBroker/AzResourceBroker.cs:line 239\n at Microsoft.Azure.ContainerNetworking.DncRP.AzResourceBroker.PutResourceAsync[T](String tenantId, String resourceId, String apiVersion, T requestBody) in /usr/local/Networking-Aquarius/src/DncRP/Server/AzResourceBroker/AzResourceBroker.cs:line - 134\n at Microsoft.Azure.ContainerNetworking.DncRP.AzVNetBroker.GetOrCreatePrivateEndpoint(String + 129\n at Microsoft.Azure.ContainerNetworking.DncRP.AzVNetBroker.GetOrCreatePrivateEndpoint(String privateLinkResourceId, String privateEndpointName) in /usr/local/Networking-Aquarius/src/DncRP/Server/AzResourceBroker/AzVNetBroker.cs:line - 346\n at Microsoft.Azure.ContainerNetworking.DncRP.OrchestratorController.ExecutePutOrchestratorAsync(String + 350\n at Microsoft.Azure.ContainerNetworking.DncRP.OrchestratorController.ExecutePutOrchestratorAsync(String subscriptionId, String resourceGroupName, String resourceName) in /usr/local/Networking-Aquarius/src/DncRP/Server/Controllers/OrchestratorController.cs:line - 207InternalErrorCode: PrivateEndpointCreateFailed. Private endpoint creation + 154InternalErrorCode: PrivateEndpointCreateFailed. Private endpoint creation failed: System.Exception: ResponseMessage: System.Net.Http.HttpConnectionResponseContent, - status code BadRequest, Reason: Bad Request, internal exception: System.Net.Http.HttpRequestException: - Response status code does not indicate success: 400 (Bad Request).\n at - System.Net.Http.HttpResponseMessage.EnsureSuccessStatusCode()\n at Microsoft.Azure.ContainerNetworking.CoreLib.HttpUtility.ParseHttpResponse[T](HttpResponseMessage + status code BadRequest, Reason: , internal exception: System.Net.Http.HttpRequestException: + Response status code does not indicate success: 400 ().\n at System.Net.Http.HttpResponseMessage.EnsureSuccessStatusCode()\n at + Microsoft.Azure.ContainerNetworking.CoreLib.HttpUtility.ParseHttpResponse[T](HttpResponseMessage httpResponse, JsonSerializerSettings deserializeSettings) in /usr/local/Networking-Aquarius/src/Common/CoreLib/HttpUtility.cs:line 142\n at Microsoft.Azure.ContainerNetworking.CoreLib.HttpUtility.ParseHttpResponse[T](HttpResponseMessage httpResponse, JsonSerializerSettings deserializeSettings) in /usr/local/Networking-Aquarius/src/Common/CoreLib/HttpUtility.cs:line @@ -309,38 +307,38 @@ interactions: /usr/local/Networking-Aquarius/src/DncRP/Server/AzResourceBroker/AzResourceBroker.cs:line 239\n at Microsoft.Azure.ContainerNetworking.DncRP.AzResourceBroker.PutResourceAsync[T](String tenantId, String resourceId, String apiVersion, T requestBody) in /usr/local/Networking-Aquarius/src/DncRP/Server/AzResourceBroker/AzResourceBroker.cs:line - 134\n at Microsoft.Azure.ContainerNetworking.DncRP.AzVNetBroker.GetOrCreatePrivateEndpoint(String + 129\n at Microsoft.Azure.ContainerNetworking.DncRP.AzVNetBroker.GetOrCreatePrivateEndpoint(String privateLinkResourceId, String privateEndpointName) in /usr/local/Networking-Aquarius/src/DncRP/Server/AzResourceBroker/AzVNetBroker.cs:line - 346\n at Microsoft.Azure.ContainerNetworking.DncRP.OrchestratorController.ExecutePutOrchestratorAsync(String + 350\n at Microsoft.Azure.ContainerNetworking.DncRP.OrchestratorController.ExecutePutOrchestratorAsync(String subscriptionId, String resourceGroupName, String resourceName) in /usr/local/Networking-Aquarius/src/DncRP/Server/Controllers/OrchestratorController.cs:line - 207","details":null}}}' + 154","details":null}}}' headers: cache-control: - no-cache - connection: - - close content-length: - - '4395' + - '4351' content-type: - application/json date: - - Fri, 28 Jul 2023 20:49:09 GMT + - Tue, 22 Aug 2023 22:35:24 GMT expires: - '-1' pragma: - no-cache request-context: - appId=cid-v1:82487bea-6925-46b8-a5c9-0bcae97f8f27 - server: - - Kestrel strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-failure-cause: - service x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' + x-msedge-ref: + - 'Ref A: 6D33296DF10E40A58F5824358D85732C Ref B: CO6AA3150217025 Ref C: 2023-08-22T22:35:23Z' status: code: 500 message: Internal Server Error @@ -367,16 +365,16 @@ interactions: - --type --location --api-server-endpoint --cluster-root-ca --id --orchestrator-app-id --orchestrator-tenant-id --priv-link-resource-id --resource-group --resource-name User-Agent: - - AZURECLI/2.50.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.51.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dnc000001/providers/Microsoft.DelegatedNetwork/orchestrators/testk8s1?api-version=2023-05-18-preview response: body: string: '{"ErrorResponse":{"error":{"code":"500","message":"Error in API: PutOrchestratorPrivate endpoint creation failed: System.Exception: ResponseMessage: System.Net.Http.HttpConnectionResponseContent, - status code BadRequest, Reason: Bad Request, internal exception: System.Net.Http.HttpRequestException: - Response status code does not indicate success: 400 (Bad Request).\n at - System.Net.Http.HttpResponseMessage.EnsureSuccessStatusCode()\n at Microsoft.Azure.ContainerNetworking.CoreLib.HttpUtility.ParseHttpResponse[T](HttpResponseMessage + status code BadRequest, Reason: , internal exception: System.Net.Http.HttpRequestException: + Response status code does not indicate success: 400 ().\n at System.Net.Http.HttpResponseMessage.EnsureSuccessStatusCode()\n at + Microsoft.Azure.ContainerNetworking.CoreLib.HttpUtility.ParseHttpResponse[T](HttpResponseMessage httpResponse, JsonSerializerSettings deserializeSettings) in /usr/local/Networking-Aquarius/src/Common/CoreLib/HttpUtility.cs:line 142\n at Microsoft.Azure.ContainerNetworking.CoreLib.HttpUtility.ParseHttpResponse[T](HttpResponseMessage httpResponse, JsonSerializerSettings deserializeSettings) in /usr/local/Networking-Aquarius/src/Common/CoreLib/HttpUtility.cs:line @@ -387,15 +385,15 @@ interactions: /usr/local/Networking-Aquarius/src/DncRP/Server/AzResourceBroker/AzResourceBroker.cs:line 239\n at Microsoft.Azure.ContainerNetworking.DncRP.AzResourceBroker.PutResourceAsync[T](String tenantId, String resourceId, String apiVersion, T requestBody) in /usr/local/Networking-Aquarius/src/DncRP/Server/AzResourceBroker/AzResourceBroker.cs:line - 134\n at Microsoft.Azure.ContainerNetworking.DncRP.AzVNetBroker.GetOrCreatePrivateEndpoint(String + 129\n at Microsoft.Azure.ContainerNetworking.DncRP.AzVNetBroker.GetOrCreatePrivateEndpoint(String privateLinkResourceId, String privateEndpointName) in /usr/local/Networking-Aquarius/src/DncRP/Server/AzResourceBroker/AzVNetBroker.cs:line - 346\n at Microsoft.Azure.ContainerNetworking.DncRP.OrchestratorController.ExecutePutOrchestratorAsync(String + 350\n at Microsoft.Azure.ContainerNetworking.DncRP.OrchestratorController.ExecutePutOrchestratorAsync(String subscriptionId, String resourceGroupName, String resourceName) in /usr/local/Networking-Aquarius/src/DncRP/Server/Controllers/OrchestratorController.cs:line - 207InternalErrorCode: PrivateEndpointCreateFailed. Private endpoint creation + 154InternalErrorCode: PrivateEndpointCreateFailed. Private endpoint creation failed: System.Exception: ResponseMessage: System.Net.Http.HttpConnectionResponseContent, - status code BadRequest, Reason: Bad Request, internal exception: System.Net.Http.HttpRequestException: - Response status code does not indicate success: 400 (Bad Request).\n at - System.Net.Http.HttpResponseMessage.EnsureSuccessStatusCode()\n at Microsoft.Azure.ContainerNetworking.CoreLib.HttpUtility.ParseHttpResponse[T](HttpResponseMessage + status code BadRequest, Reason: , internal exception: System.Net.Http.HttpRequestException: + Response status code does not indicate success: 400 ().\n at System.Net.Http.HttpResponseMessage.EnsureSuccessStatusCode()\n at + Microsoft.Azure.ContainerNetworking.CoreLib.HttpUtility.ParseHttpResponse[T](HttpResponseMessage httpResponse, JsonSerializerSettings deserializeSettings) in /usr/local/Networking-Aquarius/src/Common/CoreLib/HttpUtility.cs:line 142\n at Microsoft.Azure.ContainerNetworking.CoreLib.HttpUtility.ParseHttpResponse[T](HttpResponseMessage httpResponse, JsonSerializerSettings deserializeSettings) in /usr/local/Networking-Aquarius/src/Common/CoreLib/HttpUtility.cs:line @@ -406,38 +404,38 @@ interactions: /usr/local/Networking-Aquarius/src/DncRP/Server/AzResourceBroker/AzResourceBroker.cs:line 239\n at Microsoft.Azure.ContainerNetworking.DncRP.AzResourceBroker.PutResourceAsync[T](String tenantId, String resourceId, String apiVersion, T requestBody) in /usr/local/Networking-Aquarius/src/DncRP/Server/AzResourceBroker/AzResourceBroker.cs:line - 134\n at Microsoft.Azure.ContainerNetworking.DncRP.AzVNetBroker.GetOrCreatePrivateEndpoint(String + 129\n at Microsoft.Azure.ContainerNetworking.DncRP.AzVNetBroker.GetOrCreatePrivateEndpoint(String privateLinkResourceId, String privateEndpointName) in /usr/local/Networking-Aquarius/src/DncRP/Server/AzResourceBroker/AzVNetBroker.cs:line - 346\n at Microsoft.Azure.ContainerNetworking.DncRP.OrchestratorController.ExecutePutOrchestratorAsync(String + 350\n at Microsoft.Azure.ContainerNetworking.DncRP.OrchestratorController.ExecutePutOrchestratorAsync(String subscriptionId, String resourceGroupName, String resourceName) in /usr/local/Networking-Aquarius/src/DncRP/Server/Controllers/OrchestratorController.cs:line - 207","details":null}}}' + 154","details":null}}}' headers: cache-control: - no-cache - connection: - - close content-length: - - '4395' + - '4351' content-type: - application/json date: - - Fri, 28 Jul 2023 20:49:14 GMT + - Tue, 22 Aug 2023 22:35:29 GMT expires: - '-1' pragma: - no-cache request-context: - appId=cid-v1:82487bea-6925-46b8-a5c9-0bcae97f8f27 - server: - - Kestrel strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-failure-cause: - service x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: 8C1A9A777F024A289B84E6F536CE5DEA Ref B: CO6AA3150217025 Ref C: 2023-08-22T22:35:28Z' status: code: 500 message: Internal Server Error diff --git a/src/dnc/azext_dnc/tests/latest/recordings/test_dnc_orchestrator_instance_service_delete.yaml b/src/dnc/azext_dnc/tests/latest/recordings/test_dnc_orchestrator_instance_service_delete.yaml index 27afd6ec19c..ab9e910c0a8 100644 --- a/src/dnc/azext_dnc/tests/latest/recordings/test_dnc_orchestrator_instance_service_delete.yaml +++ b/src/dnc/azext_dnc/tests/latest/recordings/test_dnc_orchestrator_instance_service_delete.yaml @@ -15,7 +15,7 @@ interactions: ParameterSetName: - --resource-name --resource-group --yes User-Agent: - - AZURECLI/2.50.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.51.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dnc000001/providers/Microsoft.DelegatedNetwork/orchestrators/testk8s1?api-version=2023-05-18-preview response: @@ -25,17 +25,21 @@ interactions: cache-control: - no-cache date: - - Fri, 28 Jul 2023 20:49:05 GMT + - Tue, 22 Aug 2023 22:35:19 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - '14999' + x-msedge-ref: + - 'Ref A: 2CDE89323BDA4A03AA7832D5BEF88908 Ref B: CO6AA3150218035 Ref C: 2023-08-22T22:35:19Z' status: code: 204 message: No Content diff --git a/src/dnc/azext_dnc/tests/latest/recordings/test_dnc_orchestrator_instance_service_show.yaml b/src/dnc/azext_dnc/tests/latest/recordings/test_dnc_orchestrator_instance_service_show.yaml index 4e79601bc73..eb31a23c99d 100644 --- a/src/dnc/azext_dnc/tests/latest/recordings/test_dnc_orchestrator_instance_service_show.yaml +++ b/src/dnc/azext_dnc/tests/latest/recordings/test_dnc_orchestrator_instance_service_show.yaml @@ -13,7 +13,7 @@ interactions: ParameterSetName: - --resource-name --resource-group User-Agent: - - AZURECLI/2.50.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.51.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dnc000001/providers/Microsoft.DelegatedNetwork/orchestrators/testk8s1?api-version=2023-05-18-preview response: @@ -29,17 +29,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 28 Jul 2023 20:49:05 GMT + - Tue, 22 Aug 2023 22:35:20 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-failure-cause: - gateway + x-msedge-ref: + - 'Ref A: 40DF91C411DD43B3BEE6A3867D409319 Ref B: CO6AA3150217045 Ref C: 2023-08-22T22:35:20Z' status: code: 404 message: Not Found diff --git a/src/dnc/setup.py b/src/dnc/setup.py index ef51c6b4c85..93270410949 100644 --- a/src/dnc/setup.py +++ b/src/dnc/setup.py @@ -10,7 +10,7 @@ # HISTORY.rst entry. -VERSION = '0.2.0' +VERSION = '0.2.1' # The full list of classifiers is available at # https://pypi.python.org/pypi?%3Aaction=list_classifiers